summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190325185009_create_notification_id_index.exs
blob: 01cb30559e2a517fc135df8c17bf21231c26c522 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.CreateNotificationIdIndex do
  use Ecto.Migration

  def change do
    create_if_not_exists index(:notifications, ["id desc nulls last"])
  end
end