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
281 B

class CreateIncomeRanges < ActiveRecord::Migration[6.1]
def change
create_table :income_ranges do |t|
t.string :economic_status
t.integer :soft_min
t.integer :soft_max
t.integer :hard_min
t.integer :hard_max
t.timestamps
end
end
end