akkoma/priv/repo/migrations/20170912114248_add_context_index.exs
Oneric 1a4238bf98
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/build-amd64 Pipeline was successful
ci/woodpecker/pr/build-arm64 Pipeline was successful
ci/woodpecker/pr/docs Pipeline was successful
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

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