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.
12 lines
501 B
12 lines
501 B
3 years ago
|
class AddReasonablePreferenceReasonFields < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_table :case_logs, bulk: true do |t|
|
||
|
t.column :reasonable_preference_reason_homeless, :boolean
|
||
|
t.column :reasonable_preference_reason_unsatisfactory_housing, :boolean
|
||
|
t.column :reasonable_preference_reason_medical_grounds, :boolean
|
||
|
t.column :reasonable_preference_reason_avoid_hardship, :boolean
|
||
|
t.column :reasonable_preference_reason_do_not_know, :boolean
|
||
|
end
|
||
|
end
|
||
|
end
|