3 lines
138 B
SQL
3 lines
138 B
SQL
-- Add loyalty_discount column to orders table
|
|
ALTER TABLE orders ADD COLUMN IF NOT EXISTS loyalty_discount DECIMAL(12, 3) DEFAULT 0.000;
|