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

9 lines
214 B
Elixir
Raw Normal View History

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