Sistema NEXUS v3.4 migrado con: Estructura principal: - core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles) - core/catalog: Catalogo de funcionalidades reutilizables - shared/knowledge-base: Base de conocimiento compartida - devtools/scripts: Herramientas de desarrollo - control-plane/registries: Control de servicios y CI/CD - orchestration/: Configuracion de orquestacion de agentes Proyectos incluidos (11): - gamilit (submodule -> GitHub) - trading-platform (OrbiquanTIA) - erp-suite con 5 verticales: - erp-core, construccion, vidrio-templado - mecanicas-diesel, retail, clinicas - betting-analytics - inmobiliaria-analytics - platform_marketing_content - pos-micro, erp-basico Configuracion: - .gitignore completo para Node.js/Python/Docker - gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git) - Sistema de puertos estandarizado (3005-3199) Generated with NEXUS v3.4 Migration System EPIC-010: Configuracion Git y Repositorios
38 lines
1.4 KiB
SQL
38 lines
1.4 KiB
SQL
-- ============================================================================
|
|
-- OrbiQuant IA - Trading Platform
|
|
-- File: 01-schemas.sql
|
|
-- Description: Database schemas creation
|
|
-- ============================================================================
|
|
|
|
-- Authentication and User Management
|
|
CREATE SCHEMA IF NOT EXISTS auth;
|
|
COMMENT ON SCHEMA auth IS 'Authentication, authorization, and user management';
|
|
|
|
-- Education and Learning
|
|
CREATE SCHEMA IF NOT EXISTS education;
|
|
COMMENT ON SCHEMA education IS 'Educational content, courses, and learning progress';
|
|
|
|
-- Trading Operations
|
|
CREATE SCHEMA IF NOT EXISTS trading;
|
|
COMMENT ON SCHEMA trading IS 'Trading bots, orders, positions, and market data';
|
|
|
|
-- Investment Management
|
|
CREATE SCHEMA IF NOT EXISTS investment;
|
|
COMMENT ON SCHEMA investment IS 'Investment products, accounts, and transactions';
|
|
|
|
-- Financial Operations
|
|
CREATE SCHEMA IF NOT EXISTS financial;
|
|
COMMENT ON SCHEMA financial IS 'Wallets, payments, subscriptions, and financial transactions';
|
|
|
|
-- Machine Learning
|
|
CREATE SCHEMA IF NOT EXISTS ml;
|
|
COMMENT ON SCHEMA ml IS 'ML models, predictions, and feature store';
|
|
|
|
-- Large Language Models
|
|
CREATE SCHEMA IF NOT EXISTS llm;
|
|
COMMENT ON SCHEMA llm IS 'LLM conversations, messages, and user preferences';
|
|
|
|
-- Audit and Compliance
|
|
CREATE SCHEMA IF NOT EXISTS audit;
|
|
COMMENT ON SCHEMA audit IS 'Audit logs, security events, and compliance tracking';
|