Check show ansicht
Some checks failed
/ Run system tests (push) Waiting to run
/ Build, push and deploy image (push) Blocked by required conditions
/ Run tests (push) Has been cancelled

This commit is contained in:
david 2024-09-11 22:04:55 +02:00
parent 4f98673205
commit 29a2bd7466
9 changed files with 74 additions and 25 deletions

View file

@ -1,7 +1,6 @@
class FinalizeCheckFields < ActiveRecord::Migration[7.2]
def change
add_column :checks, :number, :integer
add_index :checks, :number, unique: true
add_column :checks, :number, :string
add_column :checks, :name_de, :string
add_column :checks, :name_en, :string
@ -23,6 +22,6 @@ class FinalizeCheckFields < ActiveRecord::Migration[7.2]
add_column :checks, :manual_test, :boolean, null: false, default: true
add_column :checks, :test_url, :string, null: true
add_column :checks, :external_url, :string, null: true
add_column :checks, :external_url, :string, null: false
end
end