summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs')
-rw-r--r--priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs10
1 files changed, 10 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs b/priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs
new file mode 100644
index 000000000..392f531e8
--- /dev/null
+++ b/priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs
@@ -0,0 +1,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