pleroma/priv/repo/migrations/20200825093037_drop_activit...

8 lines
154 B
Elixir
Raw Normal View History

2020-08-25 09:33:38 +00:00
defmodule Pleroma.Repo.Migrations.DropActivityExpirationsTable do
use Ecto.Migration
def change do
drop(table("activity_expirations"))
end
end