Update table prefix from ogp_ to gsp_ in SQL files and config
Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
parent
4e5bae68c4
commit
0be96da2a0
7 changed files with 48 additions and 42 deletions
|
|
@ -1,9 +1,10 @@
|
|||
-- Add paypal_data column to billing_orders table
|
||||
-- This stores the full PayPal response JSON for admin/refund tracking
|
||||
-- Table prefix is hardcoded to gsp_ for standalone billing module
|
||||
|
||||
ALTER TABLE `ogp_billing_orders`
|
||||
ALTER TABLE `gsp_billing_orders`
|
||||
ADD COLUMN `paypal_data` TEXT NULL AFTER `payment_txid`;
|
||||
|
||||
-- Update comment
|
||||
ALTER TABLE `ogp_billing_orders`
|
||||
ALTER TABLE `gsp_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