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

class CreateLocalAuthorities < ActiveRecord::Migration[7.0]
def change
create_table :local_authorities do |t|
t.string :code
t.string :la_name
t.datetime :start_date
t.datetime :end_date
t.boolean :previous_location_only, default: false
t.timestamps
end
end
end