tabletop-companion/db/migrate/20240530071706_add_missing_...

9 lines
340 B
Ruby
Raw Permalink Normal View History

2024-05-30 07:20:05 +00:00
# frozen_string_literal: true
# This migration comes from solid_queue (originally 20240110143450)
class AddMissingIndexToBlockedExecutions < ActiveRecord::Migration[7.1]
def change
add_index :solid_queue_blocked_executions, [ :concurrency_key, :priority, :job_id ], name: "index_solid_queue_blocked_executions_for_release"
end
end