- 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>
5 lines
188 B
SQL
5 lines
188 B
SQL
-- Rollback v0.13.5 TASK-MKT-004: Support tickets
|
|
|
|
DROP INDEX IF EXISTS idx_support_tickets_created;
|
|
DROP INDEX IF EXISTS idx_support_tickets_status;
|
|
DROP TABLE IF EXISTS support_tickets;
|