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.
10 lines
340 B
10 lines
340 B
3 years ago
|
class AddConditionalFieldsToCaseLogs < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_table :case_logs, bulk: true do |t|
|
||
|
t.column :outstanding_rent_or_charges, :string
|
||
|
t.column :other_reason_for_leaving_last_settled_home, :string
|
||
|
t.rename :last_settled_home, :reason_for_leaving_last_settled_home
|
||
|
end
|
||
|
end
|
||
|
end
|