Add order items
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
-- Add quantity field to payment_order_items table
|
||||
ALTER TABLE payment_order_items
|
||||
ADD COLUMN quantity INTEGER NOT NULL DEFAULT 0;
|
||||
|
||||
-- Add comment to explain the field
|
||||
COMMENT ON COLUMN payment_order_items.quantity IS 'Quantity paid for this specific payment split';
|
||||
Reference in New Issue
Block a user