소스 검색

add missing migration to drop websub table

merge-requests/1875/head
Ariadne Conill 4 년 전
부모
커밋
34754938ba
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. +8
    -0
      priv/repo/migrations/20191017225002_drop_websub_tables.exs

+ 8
- 0
priv/repo/migrations/20191017225002_drop_websub_tables.exs 파일 보기

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

불러오는 중...
취소
저장