1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 14:49:15 +00:00
akkoma/priv/repo/migrations/20191017225002_drop_websub_tables.exs

11 lines
233 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.DropWebsubTables do
use Ecto.Migration
def up do
drop_if_exists(table(:websub_client_subscriptions))
drop_if_exists(table(:websub_server_subscriptions))
end
def down, do: :noop
end