Ver código fonte

add missing migration to drop websub table

merge-requests/1875/head
Ariadne Conill 4 anos atrás
pai
commit
34754938ba
1 arquivos alterados com 8 adições e 0 exclusões
  1. +8
    -0
      priv/repo/migrations/20191017225002_drop_websub_tables.exs

+ 8
- 0
priv/repo/migrations/20191017225002_drop_websub_tables.exs Ver arquivo

@@ -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

Carregando…
Cancelar
Salvar