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:
copilot-swe-agent[bot] 2025-11-07 10:48:01 +00:00
parent 4e5bae68c4
commit 0be96da2a0
7 changed files with 48 additions and 42 deletions

View file

@ -1,7 +1,8 @@
-- Create billing_invoices table for invoice-first flow
-- Run this SQL to enable the new billing system
-- Table prefix is hardcoded to gsp_ for standalone billing module
CREATE TABLE IF NOT EXISTS `ogp_billing_invoices` (
CREATE TABLE IF NOT EXISTS `gsp_billing_invoices` (
`invoice_id` INT(11) NOT NULL AUTO_INCREMENT,
`order_id` INT(11) NOT NULL DEFAULT 0,
`user_id` INT(11) NOT NULL,