Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
414 B
SQL
15 lines
414 B
SQL
-- ===========================================
|
|
-- MECANICAS DIESEL - Extensiones PostgreSQL
|
|
-- ===========================================
|
|
-- Ejecutar primero
|
|
|
|
-- UUID generation
|
|
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
|
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
|
|
|
-- Full text search en español
|
|
CREATE EXTENSION IF NOT EXISTS "unaccent";
|
|
|
|
-- Para auditoría y triggers
|
|
CREATE EXTENSION IF NOT EXISTS "hstore";
|