commit: 62e3d76a450c1b34ba8d0c88a184ec861ed90f29
parent 1311884a1d35fa091b850e3a4d310a8da29059da
Author: kaniini <ariadne@dereferenced.org>
Date: Sun, 20 Oct 2019 11:04:22 +0000
Merge branch 'chore/add-missing-websub-drop-migration' into 'develop'
add missing migration to drop websub table
See merge request pleroma/pleroma!1868
Diffstat:
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/priv/repo/migrations/20191017225002_drop_websub_tables.exs b/priv/repo/migrations/20191017225002_drop_websub_tables.exs
@@ -0,0 +1,8 @@
+defmodule Pleroma.Repo.Migrations.DropWebsubTables do
+ use Ecto.Migration
+
+ def change do
+ drop_if_exists(table(:websub_client_subscriptions))
+ drop_if_exists(table(:websub_server_subscriptions))
+ end
+end