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.
 
 
 
 

14 lines
332 B

class CreateLaSalesRanges < ActiveRecord::Migration[7.0]
def change
create_table :la_sales_ranges do |t|
t.string :la
t.string :la_name
t.integer :beds
t.integer :soft_min, null: false
t.integer :soft_max, null: false
t.index %i[beds la], unique: true
t.timestamps
end
end
end