mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-12 03:54:25 +00:00
7c64f705f6
Also bump minimum Elixir to 1.11
26 lines
533 B
Elixir
26 lines
533 B
Elixir
defmodule Pleroma.Repo.Migrations.SwapPrimaryObanIndexes do
|
|
use Ecto.Migration
|
|
|
|
@disable_ddl_transaction true
|
|
@disable_migration_lock true
|
|
|
|
def change do
|
|
create_if_not_exists(
|
|
index(
|
|
:oban_jobs,
|
|
[:state, :queue, :priority, :scheduled_at, :id],
|
|
concurrently: true,
|
|
prefix: "public"
|
|
)
|
|
)
|
|
|
|
drop_if_exists(
|
|
index(
|
|
:oban_jobs,
|
|
[:queue, :state, :priority, :scheduled_at, :id],
|
|
concurrently: true,
|
|
prefix: "public"
|
|
)
|
|
)
|
|
end
|
|
end
|