8 lines
215 B
8 lines
215 B
1 year ago
|
class AddSalesManagingOrganisation < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
change_table :sales_logs, bulk: true do |t|
|
||
|
t.references :managing_organisation, class_name: "Organisation"
|
||
|
end
|
||
|
end
|
||
|
end
|