diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-03-16 14:25:55 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-03-16 14:25:55 +0300 |
commit | f0651730bdf018b713e21ce718719c7781398362 (patch) | |
tree | 836e0fbcbb49f0ae78635a268e30013c0e94aea7 /priv/repo/migrations/20200314123607_config_remove_fetch_initial_posts.exs | |
parent | 98ed0d1c4bd2db354154cc4a1d1e6530eb68f499 (diff) | |
parent | c2527b8c63a4e35b121981efe2c39cc54c77648d (diff) | |
download | pleroma-f0651730bdf018b713e21ce718719c7781398362.tar.gz pleroma-f0651730bdf018b713e21ce718719c7781398362.zip |
Merge branch 'develop' into gun
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.exs | 10 |
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 |