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