drop activity_expirations table

This commit is contained in:
Alexander Strizhakov 2020-08-25 12:33:38 +03:00 committed by rinpatch
parent 5ad0cc4c86
commit 5381d4b78b
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.DropActivityExpirationsTable do
use Ecto.Migration
def change do
drop(table("activity_expirations"))
end
end