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>
18 lines
731 B
SQL
18 lines
731 B
SQL
-- =============================================================================
|
|
-- Schema: communication
|
|
-- Description: Communication and messaging system for teacher-student interaction
|
|
-- Created: 2025-11-19
|
|
-- Priority: P1
|
|
-- =============================================================================
|
|
|
|
-- Create communication schema
|
|
CREATE SCHEMA IF NOT EXISTS communication;
|
|
|
|
-- Grant usage to application user
|
|
GRANT USAGE ON SCHEMA communication TO gamilit_user;
|
|
GRANT ALL ON SCHEMA communication TO gamilit_user;
|
|
|
|
-- Add comment
|
|
COMMENT ON SCHEMA communication IS
|
|
'Schema for communication features including direct messaging between teachers and students, classroom announcements, and notifications.';
|