trading-platform-database-v2/ddl/schemas/llm/00-extensions.sql
rckrdmrd 45e77e9a9c feat: Initial commit - Database schemas and scripts
DDL schemas for Trading Platform:
- User management
- Authentication
- Payments
- Education
- ML predictions
- Trading data

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 04:30:23 -06:00

14 lines
609 B
SQL

-- ============================================================================
-- OrbiQuant IA - Trading Platform
-- Schema: llm
-- File: 00-extensions.sql
-- Description: PostgreSQL extensions required for LLM schema (embeddings)
-- ============================================================================
-- pgvector extension for vector similarity search
-- Required for storing and querying embeddings
-- Installation: https://github.com/pgvector/pgvector
CREATE EXTENSION IF NOT EXISTS "vector";
COMMENT ON EXTENSION "vector" IS 'Vector similarity search extension (pgvector) for LLM embeddings';