1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-26 16:35:05 +01:00
pleroma/priv/repo/migrations/20190410152859_add_participation_updated_at_index.exs
2019-10-08 15:16:39 +03:00

8 lines
199 B
Elixir

defmodule Pleroma.Repo.Migrations.AddParticipationUpdatedAtIndex do
use Ecto.Migration
def change do
create_if_not_exists(index(:conversation_participations, ["updated_at desc"]))
end
end