Explorar el Código

add missing migration to drop websub table

merge-requests/1875/head
Ariadne Conill hace 4 años
padre
commit
34754938ba
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. +8
    -0
      priv/repo/migrations/20191017225002_drop_websub_tables.exs

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

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

Cargando…
Cancelar
Guardar