bmc_hub/migrations/182_fedex_add_pricing_columns.sql

8 lines
287 B
MySQL
Raw Normal View History

-- Migration 182: Add pricing fields to FedEx shipments
ALTER TABLE fedex_shipments
ADD COLUMN IF NOT EXISTS total_amount NUMERIC(12,2),
ADD COLUMN IF NOT EXISTS currency VARCHAR(8);
CREATE INDEX IF NOT EXISTS idx_fedex_shipments_total_amount ON fedex_shipments(total_amount);