2022-02-25 22:11:42 -08:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 03:11:47 -08:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-25 22:11:42 -08:00
|
|
|
# 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
|