Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20190410152859_add_participation_updated_at_index.exs
1 defmodule Pleroma.Repo.Migrations.AddParticipationUpdatedAtIndex do
2 use Ecto.Migration
3
4 def change do
5 create_if_not_exists(index(:conversation_participations, ["updated_at desc"]))
6 end
7 end