akkoma/priv/repo/migrations/20221128103145_add_per_user_post_expiry.exs
floatingghost 0cfd5b4e89
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
Add ability to set a default post expiry (#321)
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk>
Reviewed-on: #321
2022-11-28 13:34:54 +00:00

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