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.
 
 
 
 

12 lines
505 B

class AddMissingAttributesToScheme < ActiveRecord::Migration[7.0]
def change
add_column :schemes, :primary_client_group, :string
add_column :schemes, :secondary_client_group, :string
add_column :schemes, :sensitive, :boolean
add_column :schemes, :total_units, :boolean
add_column :schemes, :scheme_type, :integer
add_column :schemes, :registered_under_care_act, :boolean
add_column :schemes, :support_type, :integer
add_column :schemes, :intended_stay, :string
end
end