- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
17 lines
979 B
SQL
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);
|