Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

13 lines
355 B

class RemainingCoreMigrations < ActiveRecord::Migration[6.1]
def up
change_table :case_logs, bulk: true do |_t|
remove_column :case_logs, :condition_effects_prefer_not_to_say
end
end
def down
change_table :case_logs, bulk: true do |_t|
add_column :case_logs, :condition_effects_prefer_not_to_say, :integer
end
end
end