2022-02-25 22:11:42 -08: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 03:39:03 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.DropWebsubTables do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2019-10-21 01:58:22 -07:00
|
|
|
def up do
|
2019-10-20 03:39:03 -07:00
|
|
|
drop_if_exists(table(:websub_client_subscriptions))
|
|
|
|
drop_if_exists(table(:websub_server_subscriptions))
|
|
|
|
end
|
2019-10-21 01:58:22 -07:00
|
|
|
|
|
|
|
def down, do: :noop
|
2019-10-20 03:39:03 -07:00
|
|
|
end
|