Add ability to set a default post expiry (#321)
[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