summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191017225002_drop_websub_tables.exs
diff options
context:
space:
mode:
authorMaksim Pechnikov <parallel588@gmail.com>2019-10-24 09:23:59 +0300
committerMaksim Pechnikov <parallel588@gmail.com>2019-10-24 09:23:59 +0300
commit99cf1ef9be93ebab04d088848804369e6295a76d (patch)
tree94738e2bc0ee642db4abc4e65a9798782de59623 /priv/repo/migrations/20191017225002_drop_websub_tables.exs
parentd3fb9e02cc0ce7dc462e587e639e117aaef5fbc5 (diff)
parent17c237ba808d4356bb1e202e459680563b79ef99 (diff)
downloadpleroma-99cf1ef9be93ebab04d088848804369e6295a76d.tar.gz
pleroma-99cf1ef9be93ebab04d088848804369e6295a76d.zip
Merge branch 'develop' into issue/1276
Diffstat (limited to 'priv/repo/migrations/20191017225002_drop_websub_tables.exs')
-rw-r--r--priv/repo/migrations/20191017225002_drop_websub_tables.exs4
1 files changed, 3 insertions, 1 deletions
diff --git a/priv/repo/migrations/20191017225002_drop_websub_tables.exs b/priv/repo/migrations/20191017225002_drop_websub_tables.exs
index 9e483b2a1..4cf67a59c 100644
--- a/priv/repo/migrations/20191017225002_drop_websub_tables.exs
+++ b/priv/repo/migrations/20191017225002_drop_websub_tables.exs
@@ -1,8 +1,10 @@
defmodule Pleroma.Repo.Migrations.DropWebsubTables do
use Ecto.Migration
- def change do
+ def up do
drop_if_exists(table(:websub_client_subscriptions))
drop_if_exists(table(:websub_server_subscriptions))
end
+
+ def down, do: :noop
end