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

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