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.
16 lines
553 B
16 lines
553 B
3 years ago
|
class AddAdditionalFieldToCaseLog < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_table :case_logs, bulk: true do |t|
|
||
|
t.column :last_settled_home, :string
|
||
|
t.column :benefit_cap_spare_room_subsidy, :string
|
||
|
t.column :armed_forces_active, :string
|
||
|
t.column :armed_forces_injured, :string
|
||
|
t.column :armed_forces_partner, :string
|
||
|
t.column :medical_conditions, :string
|
||
|
t.column :pregnancy, :string
|
||
|
t.column :accessibility_requirements, :string
|
||
|
t.column :condition_effects, :string
|
||
|
end
|
||
|
end
|
||
|
end
|