akkoma/priv/repo/migrations/20221128103145_add_per_user_post_expiry.exs
FloatingGhost 75ddba819e
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline failed
Add ability to set a default post expiry
2022-11-28 12:17:58 +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