mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-18 12:59:24 +00:00
10 lines
191 B
Elixir
10 lines
191 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddPerUserPostExpiry do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:users) do
|
||
|
add(:status_ttl_days, :integer, null: true)
|
||
|
end
|
||
|
end
|
||
|
end
|