3 lines
111 B
SQL
3 lines
111 B
SQL
-- Remove quantity field from payment_order_items table
|
|
ALTER TABLE payment_order_items
|
|
DROP COLUMN quantity; |