a11yist/db/migrate/20241026170258_add_uniq_index_to_checks_standards.rb
david a304cb0d56
Some checks failed
/ Run tests (push) Failing after 16s
/ Run system tests (push) Failing after 15s
/ Build, push and deploy image (push) Has been skipped
Fix import from wcag2.1de
2024-10-26 19:13:20 +02:00

5 lines
163 B
Ruby

class AddUniqIndexToChecksStandards < ActiveRecord::Migration[7.2]
def change
add_index :checks_standards, [:check_id, :standard_id], unique: true
end
end