copilot and cart updates

This commit is contained in:
Frank Harris 2025-11-05 11:55:31 -05:00
parent f81b425f81
commit fca8ea4c74
6 changed files with 1019 additions and 1219 deletions

View file

@ -0,0 +1,9 @@
-- Add paypal_data column to billing_orders table
-- This stores the full PayPal response JSON for admin/refund tracking
ALTER TABLE `ogp_billing_orders`
ADD COLUMN `paypal_data` TEXT NULL AFTER `payment_txid`;
-- Update comment
ALTER TABLE `ogp_billing_orders`
MODIFY COLUMN `paypal_data` TEXT NULL COMMENT 'Full PayPal API response JSON for tracking/refunds';