mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-02-12 16:33:36 +01: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
|