mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-13 04:00:21 +00:00
Merge pull request #9575 from apricot12/9487-Dimensions-Packing-Reports
Added HEIGHT, WEIGHT, WIDTH, DEPTH columns to packing reports by customer.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class AddDimensionsToLineItems < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :spree_line_items, :weight, :decimal, precision: 8, scale: 2
|
||||
add_column :spree_line_items, :height, :decimal, precision: 8, scale: 2
|
||||
add_column :spree_line_items, :width, :decimal, precision: 8, scale: 2
|
||||
add_column :spree_line_items, :depth, :decimal, precision: 8, scale: 2
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user