1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-11 15:25:05 +01:00

Participations: Add sort index.

This commit is contained in:
lain 2019-04-10 17:30:25 +02:00
parent cf353514fe
commit de57094fca

View File

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.AddParticipationUpdatedAtIndex do
use Ecto.Migration
def change do
create index(:conversation_participations, ["updated_at desc"])
end
end