Add ability to set a default post expiry (#321)
[akkoma] / priv / repo / migrations / 20200314123607_config_remove_fetch_initial_posts.exs
1 defmodule Pleroma.Repo.Migrations.ConfigRemoveFetchInitialPosts do
2 use Ecto.Migration
3
4 def change do
5 execute(
6 "delete from config where config.key = ':fetch_initial_posts' and config.group = ':pleroma';",
7 ""
8 )
9 end
10 end