2020-08-07 01:14:14 +02:00
|
|
|
class AddTransportToOrder < ActiveRecord::Migration[4.2]
|
2020-03-19 00:22:20 +01:00
|
|
|
def change
|
|
|
|
add_column :orders, :transport, :decimal, precision: 8, scale: 2
|
|
|
|
add_column :group_orders, :transport, :decimal, precision: 8, scale: 2
|
|
|
|
end
|
|
|
|
end
|