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
477 B
15 lines
477 B
9 months ago
|
class AddNationalityAll < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
change_table :lettings_logs, bulk: true do |t|
|
||
|
t.column :nationality_all, :integer
|
||
|
t.column :nationality_all_group, :integer
|
||
|
end
|
||
|
change_table :sales_logs, bulk: true do |t|
|
||
|
t.column :nationality_all, :integer
|
||
|
t.column :nationality_all_group, :integer
|
||
|
t.column :nationality_all_buyer2, :integer
|
||
|
t.column :nationality_all_buyer2_group, :integer
|
||
|
end
|
||
|
end
|
||
|
end
|