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.
18 lines
437 B
18 lines
437 B
2 years ago
|
class CreateLocations < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
create_table :locations do |t|
|
||
|
t.string :location_code
|
||
|
t.string :postcode
|
||
|
t.string :type_of_unit
|
||
|
t.string :type_of_building
|
||
|
t.integer :wheelchair_adaptation
|
||
|
t.references :scheme, null: false, foreign_key: true
|
||
|
t.string :address_line1
|
||
|
t.string :address_line2
|
||
|
t.string :county
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|