mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +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
|