38682-vm/db/migrations/023_add_discount_to_orders.sql
2026-02-24 03:07:06 +00:00

3 lines
126 B
SQL

-- Add discount column to orders table
ALTER TABLE orders ADD COLUMN discount DECIMAL(10, 2) DEFAULT 0.00 AFTER total_amount;