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.
12 lines
240 B
Elixir
12 lines
240 B
Elixir
defmodule Pleroma.Repo.Migrations.AddIndexOnSubscribers do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create(
|
|
index(:users, ["(info->'subscribers')"],
|
|
name: :users_subscribers_index,
|
|
using: :gin
|
|
)
|
|
)
|
|
end
|
|
end
|