mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-14 04:52:17 +00:00
8 lines
214 B
Elixir
8 lines
214 B
Elixir
defmodule Pleroma.Repo.Migrations.DropWebsubTables do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop_if_exists(table(:websub_client_subscriptions))
|
|
drop_if_exists(table(:websub_server_subscriptions))
|
|
end
|
|
end
|