Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20171109141309_add_sort_index_to_activities.exs
1 defmodule Pleroma.Repo.Migrations.AddSortIndexToActivities do
2 use Ecto.Migration
3 @disable_ddl_transaction true
4
5 def change do
6 create(index(:activities, ["id desc nulls last"], concurrently: true))
7 end
8 end