Browse Source

Merge branch 'chore/add-missing-websub-drop-migration' into 'develop'

add missing migration to drop websub table

See merge request pleroma/pleroma!1868
merge-requests/1875/head
kaniini 4 years ago
parent
commit
62e3d76a45
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      priv/repo/migrations/20191017225002_drop_websub_tables.exs

+ 8
- 0
priv/repo/migrations/20191017225002_drop_websub_tables.exs View File

@@ -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…
Cancel
Save