mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
332 B
Ruby
13 lines
332 B
Ruby
|
class CreateOrderActivities < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :order_activities do |t|
|
||
|
t.belongs_to :order, foreign_key: true
|
||
|
t.references :operator_profile, foreign_key: { to_table: 'invoicing_profiles' }
|
||
|
t.string :activity_type
|
||
|
t.text :note
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|