summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190325185009_create_notification_id_index.exs
blob: 7209c16a977bc24f8b95d74fa0fece8c8d0019cb (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