- Add payment navigation to AppSidebar (user orders + admin payment menu group with collapse) - Add 5 missing nav i18n keys (myOrders, orderManagement, paymentDashboard, paymentConfig, paymentPlans) - Renumber payment migrations 090-100 → 092-102 to avoid conflict with upstream 090/091 - Remove non-payment sora_client_enabled change, restore upstream purchase_subscription fields - Remove extra 'data' from SettingsTab type union
17 lines
891 B
SQL
17 lines
891 B
SQL
-- Add payment_mode field to payment_provider_instances
|
|
-- Values: 'redirect' (hosted page redirect), 'api' (API call for QR/payurl), '' (default/N/A)
|
|
ALTER TABLE payment_provider_instances ADD COLUMN IF NOT EXISTS payment_mode VARCHAR(20) NOT NULL DEFAULT '';
|
|
|
|
-- Migrate existing data: easypay instances with 'easypay' in supported_types → redirect mode
|
|
-- Remove 'easypay' from supported_types and set payment_mode = 'redirect'
|
|
UPDATE payment_provider_instances
|
|
SET payment_mode = 'redirect',
|
|
supported_types = TRIM(BOTH ',' FROM REPLACE(REPLACE(REPLACE(
|
|
supported_types, 'easypay,', ''), ',easypay', ''), 'easypay', ''))
|
|
WHERE provider_key = 'easypay' AND supported_types LIKE '%easypay%';
|
|
|
|
-- EasyPay instances without 'easypay' in supported_types → api mode
|
|
UPDATE payment_provider_instances
|
|
SET payment_mode = 'api'
|
|
WHERE provider_key = 'easypay' AND payment_mode = '';
|