mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-10 11:57:14 +01:00
8 lines
199 B
Elixir
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
|