copilot and cart updates
This commit is contained in:
parent
f81b425f81
commit
fca8ea4c74
6 changed files with 1019 additions and 1219 deletions
9
modules/billing/add_paypal_data_column.sql
Normal file
9
modules/billing/add_paypal_data_column.sql
Normal 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';
|
||||
Loading…
Add table
Add a link
Reference in a new issue