2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|