2019-10-20 10:39:03 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.DropWebsubTables do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2019-10-21 08:58:22 +00:00
|
|
|
def up do
|
2019-10-20 10:39:03 +00:00
|
|
|
drop_if_exists(table(:websub_client_subscriptions))
|
|
|
|
drop_if_exists(table(:websub_server_subscriptions))
|
|
|
|
end
|
2019-10-21 08:58:22 +00:00
|
|
|
|
|
|
|
def down, do: :noop
|
2019-10-20 10:39:03 +00:00
|
|
|
end
|