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.
7 lines
204 B
Elixir
7 lines
204 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateApidHostExtractionIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create(index(:activities, ["(split_part(actor, '/', 3))"], name: :activities_hosts))
|
|
end
|
|
end
|