X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20190325185009_create_notification_id_index.exs;h=7209c16a977bc24f8b95d74fa0fece8c8d0019cb;hb=e2320f870e6ef4e8fc9f63282cbd459e819d740a;hp=01cb30559e2a517fc135df8c17bf21231c26c522;hpb=ed709aec2c2645ee2c1ad9a38d855fb3d99eac22;p=akkoma diff --git a/priv/repo/migrations/20190325185009_create_notification_id_index.exs b/priv/repo/migrations/20190325185009_create_notification_id_index.exs index 01cb30559..7209c16a9 100644 --- a/priv/repo/migrations/20190325185009_create_notification_id_index.exs +++ b/priv/repo/migrations/20190325185009_create_notification_id_index.exs @@ -2,6 +2,6 @@ defmodule Pleroma.Repo.Migrations.CreateNotificationIdIndex do use Ecto.Migration def change do - create_if_not_exists index(:notifications, ["id desc nulls last"]) + create_if_not_exists(index(:notifications, ["id desc nulls last"])) end end