Add transport costs to Order
This commit is contained in:
parent
8cb70d819e
commit
4c567fece1
16 changed files with 141 additions and 6 deletions
6
db/migrate/20181201000220_add_transport_to_order.rb
Normal file
6
db/migrate/20181201000220_add_transport_to_order.rb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
class AddTransportToOrder < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :orders, :transport, :decimal, precision: 8, scale: 2
|
||||
add_column :group_orders, :transport, :decimal, precision: 8, scale: 2
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue