mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 14:16:05 +01:00
9 lines
214 B
Elixir
9 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
|