michangarrito/database/seeds/01-plans.sql
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00

17 lines
979 B
SQL

-- =============================================================================
-- MICHANGARRITO - SEEDS: PLANES
-- =============================================================================
INSERT INTO subscriptions.plans (name, code, price_monthly, price_yearly, included_tokens, max_products, max_users, whatsapp_own_number, features) VALUES
('Changarrito', 'changarrito', 99.00, 990.00, 500, 100, 1, false,
'{"pos": true, "inventory": true, "reports_basic": true, "fiados": false, "customers": false}'::jsonb),
('Tiendita', 'tiendita', 199.00, 1990.00, 2000, null, 3, true,
'{"pos": true, "inventory": true, "reports_advanced": true, "fiados": true, "customers": true, "orders": true, "delivery": true}'::jsonb);
-- Paquetes de tokens
INSERT INTO subscriptions.token_packages (name, tokens, price, bonus_tokens) VALUES
('Recarga Básica', 1000, 29.00, 0),
('Recarga Plus', 3000, 69.00, 200),
('Recarga Pro', 8000, 149.00, 800),
('Recarga Mega', 20000, 299.00, 3000);