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.
15 lines
446 B
15 lines
446 B
class AddAddressToLogs < ActiveRecord::Migration[7.0] |
|
change_table :sales_logs, bulk: true do |t| |
|
t.column :address_line1, :string |
|
t.column :address_line2, :string |
|
t.column :town_or_city, :string |
|
t.column :county, :string |
|
end |
|
|
|
change_table :lettings_logs, bulk: true do |t| |
|
t.column :address_line1, :string |
|
t.column :address_line2, :string |
|
t.column :town_or_city, :string |
|
t.column :county, :string |
|
end |
|
end
|
|
|