You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
742 B
17 lines
742 B
class AddConditionEffectsFields < ActiveRecord::Migration[6.1] |
|
def change |
|
change_table :case_logs, bulk: true do |t| |
|
t.column :condition_effects_vision, :boolean |
|
t.column :condition_effects_hearing, :boolean |
|
t.column :condition_effects_mobility, :boolean |
|
t.column :condition_effects_dexterity, :boolean |
|
t.column :condition_effects_stamina, :boolean |
|
t.column :condition_effects_learning, :boolean |
|
t.column :condition_effects_memory, :boolean |
|
t.column :condition_effects_mental_health, :boolean |
|
t.column :condition_effects_social_or_behavioral, :boolean |
|
t.column :condition_effects_other, :boolean |
|
t.column :condition_effects_prefer_not_to_say, :boolean |
|
end |
|
end |
|
end
|
|
|