4cf67a59ca2fc55f4ef5ca673426154dc5db1c1c
[akkoma] / migrations / 20191017225002_drop_websub_tables.exs
1 defmodule Pleroma.Repo.Migrations.DropWebsubTables do
2 use Ecto.Migration
3
4 def up do
5 drop_if_exists(table(:websub_client_subscriptions))
6 drop_if_exists(table(:websub_server_subscriptions))
7 end
8
9 def down, do: :noop
10 end