1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-26 21:55:28 +01:00

Merge branch 'cleanup/drop-subscription-table-if-exists' into 'develop'

Remove subscription_notifications table if it existed

See merge request pleroma/pleroma!1742
This commit is contained in:
kaniini 2019-09-30 10:46:34 +00:00
commit f889e8e309

View File

@ -0,0 +1,16 @@
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
def down do
:ok
end
end