0cfd5b4e89
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/321
9 lines
191 B
Elixir
9 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
|