Show bubble_timeline in the api if any instances are set in it, do not show if none...
[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