1a4238bf98
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.
8 lines
232 B
Elixir
8 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
|