Oneric
1a4238bf98
All checks were successful
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.
11 lines
235 B
Elixir
11 lines
235 B
Elixir
defmodule Pleroma.Repo.Migrations.AddContextIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create(
|
|
index(:activities, ["(data->>'type')", "(data->>'context')"],
|
|
name: :activities_context_index
|
|
)
|
|
)
|
|
end
|
|
end
|