X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20190410152859_add_participation_updated_at_index.exs;h=e22c6e57d9321d07944b3a3f274db6b0167e9417;hb=ae54c06bb4bd2389d6eb1502b842c6b632e12e40;hp=b5ca2fc0fe4de405fca60d6f567e84e0939ef20b;hpb=47efe52c50e6c9e237b2a81b9577b829445c3e3b;p=akkoma diff --git a/priv/repo/migrations/20190410152859_add_participation_updated_at_index.exs b/priv/repo/migrations/20190410152859_add_participation_updated_at_index.exs index b5ca2fc0f..e22c6e57d 100644 --- a/priv/repo/migrations/20190410152859_add_participation_updated_at_index.exs +++ b/priv/repo/migrations/20190410152859_add_participation_updated_at_index.exs @@ -2,6 +2,6 @@ defmodule Pleroma.Repo.Migrations.AddParticipationUpdatedAtIndex do use Ecto.Migration def change do - create_if_not_exists index(:conversation_participations, ["updated_at desc"]) + create_if_not_exists(index(:conversation_participations, ["updated_at desc"])) end end