Merge pull request 'docs: Remove quarantine section' (#324) from norm/akkoma:remove...
[akkoma] / priv / repo / migrations / 20221128103145_add_per_user_post_expiry.exs
1 defmodule Pleroma.Repo.Migrations.AddPerUserPostExpiry do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add(:status_ttl_days, :integer, null: true)
7 end
8 end
9 end