summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs
blob: 392f531e81eb3ef5bbde3bbddf2573c455d15c94 (plain)
1
2
3
4
5
6
7
8
9
10
defmodule Pleroma.Repo.Migrations.ConfigRemoveFetchInitialPosts do
  use Ecto.Migration

  def change do
    execute(
      "delete from config where config.key = ':fetch_initial_posts' and config.group = ':pleroma';",
      ""
    )
  end
end