From 34754938ba27a71212899f56f8e089a82facd111 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Sun, 20 Oct 2019 10:39:03 +0000 Subject: [PATCH] add missing migration to drop websub table --- .../repo/migrations/20191017225002_drop_websub_tables.exs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 priv/repo/migrations/20191017225002_drop_websub_tables.exs diff --git a/priv/repo/migrations/20191017225002_drop_websub_tables.exs b/priv/repo/migrations/20191017225002_drop_websub_tables.exs new file mode 100644 index 000000000..9e483b2a1 --- /dev/null +++ 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