mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-24 21:53:59 +01:00
Merge branch 'chore/add-missing-websub-drop-migration' into 'develop'
add missing migration to drop websub table See merge request pleroma/pleroma!1868
This commit is contained in:
commit
62e3d76a45
1 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
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
|
Loading…
Add table
Reference in a new issue