summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2020-03-15 21:54:24 +0000
committerrinpatch <rinpatch@sdf.org>2020-03-15 21:54:24 +0000
commitbb49d8f5a0dbbad65a8f65a28cc2d0847b518067 (patch)
tree938fb7fd74053a816c21948b28d5f6cfb7443f37 /priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs
parente8493431bfc16977e43715bf8bdb09ac46580028 (diff)
parent8d15d6c3ab9aecb82ba5126bb5efef20b3dfef41 (diff)
downloadpleroma-bb49d8f5a0dbbad65a8f65a28cc2d0847b518067.tar.gz
pleroma-bb49d8f5a0dbbad65a8f65a28cc2d0847b518067.zip
Merge branch 'release/2.0.1' into 'stable'
2.0.1 release See merge request pleroma/pleroma!2298
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