1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-18 02:49:18 +00:00
akkoma/priv/repo/migrations/20190929201536_drop_subscription_if_exists.exs

17 lines
359 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.DropSubscriptionIfExists do
use Ecto.Migration
def change do
end
def up do
drop_if_exists(index(:subscription_notifications, [:user_id]))
drop_if_exists(index(:subscription_notifications, ["id desc nulls last"]))
drop_if_exists(table(:subscription_notifications))
end
2019-10-08 13:16:39 +01:00
def down do
:ok
end
end