- Configure workspace Git repository with comprehensive .gitignore - Add Odoo as submodule for ERP reference code - Include documentation: SETUP.md, GIT-STRUCTURE.md - Add gitignore templates for projects (backend, frontend, database) - Structure supports independent repos per project/subproject level Workspace includes: - core/ - Reusable patterns, modules, orchestration system - projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.) - knowledge-base/ - Reference code and patterns (includes Odoo submodule) - devtools/ - Development tools and templates - customers/ - Client implementations template 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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';
|