- Seller KYC via Stripe Identity (start verification, status check, webhook) - Support ticket system (backend handler + frontend form page) - E2E payout flow integration test (sale → payment → balance → payout) - Migrations: seller_kyc columns, support_tickets table - Frontend: SupportPage with SUMI design, lazy loading, routing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
322 B
SQL
9 lines
322 B
SQL
-- Rollback v0.13.5 TASK-MKT-001: KYC vendeurs
|
|
|
|
DROP INDEX IF EXISTS idx_seller_stripe_accounts_kyc_status;
|
|
|
|
ALTER TABLE seller_stripe_accounts
|
|
DROP COLUMN IF EXISTS kyc_status,
|
|
DROP COLUMN IF EXISTS kyc_verification_session_id,
|
|
DROP COLUMN IF EXISTS kyc_verified_at,
|
|
DROP COLUMN IF EXISTS kyc_last_error;
|