summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191017225002_drop_websub_tables.exs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2019-10-21 11:58:22 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2019-10-21 11:58:22 +0300
commit7c7f90bc4f361b8bf4b49790640a4aa490ee619f (patch)
treec74d52d098f75f93885dafe8911b9580d97657ab /priv/repo/migrations/20191017225002_drop_websub_tables.exs
parenta11a7176d59deafa08a865d6e0950b9b9c540f18 (diff)
downloadpleroma-7c7f90bc4f361b8bf4b49790640a4aa490ee619f.tar.gz
pleroma-7c7f90bc4f361b8bf4b49790640a4aa490ee619f.zip
[#1304] Merged `develop`, handled User.Info.invisible.
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