Fix import from wcag2.1de
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

This commit is contained in:
david 2024-10-26 19:13:20 +02:00
parent 903282ef5e
commit a304cb0d56
4 changed files with 66 additions and 51 deletions

3
db/schema.rb generated
View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.2].define(version: 2024_10_25_215341) do
ActiveRecord::Schema[7.2].define(version: 2024_10_26_170258) do
create_table "account_remember_keys", force: :cascade do |t|
t.string "key", null: false
t.datetime "deadline", null: false
@ -116,6 +116,7 @@ ActiveRecord::Schema[7.2].define(version: 2024_10_25_215341) do
create_table "checks_standards", id: false, force: :cascade do |t|
t.integer "check_id", null: false
t.integer "standard_id", null: false
t.index ["check_id", "standard_id"], name: "index_checks_standards_on_check_id_and_standard_id", unique: true
end
create_table "elements", force: :cascade do |t|