Browse Source

Remove subscription_notifications table if it existed

Followup to !1741
object-id-column
rinpatch 4 years ago
parent
commit
81b4243173
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      priv/repo/migrations/20190929201536_drop_subscription_if_exists.exs

+ 16
- 0
priv/repo/migrations/20190929201536_drop_subscription_if_exists.exs 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

Loading…
Cancel
Save