akkoma/priv/repo/migrations/20180513104714_modify_activity_index.exs
Oneric 1a4238bf98 cosmetic: fix concurrent index creation warnings
Since those old migrations will now most likely only run during db init,
there’s not much point in running them in the background concurrently
anyway, so just drop the cncurrent setting rather than disabling
migration locks.
2024-06-19 02:25:23 +02:00

9 lines
232 B
Elixir

defmodule Pleroma.Repo.Migrations.ModifyActivityIndex do
use Ecto.Migration
def change do
create(index(:activities, ["id desc nulls last", "local"]))
drop_if_exists(index(:activities, ["id desc nulls last"]))
end
end