guanghulab/persona-brain-db/schema/18-system-trinity.sql
2026-05-22 21:53:14 +08:00

20 lines
1.1 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- ============================================================
-- 表18system_trinityLayer 1 · 三位一体结构 · D110新增
-- 用途:定义冰朔/霜砚/铸渊三位一体的架构层级关系
-- ============================================================
CREATE TABLE IF NOT EXISTS system_trinity (
layer_id VARCHAR(16) PRIMARY KEY
CHECK (layer_id IN ('bingshuo', 'shuangyan', 'zhuyuan')),
persona_name VARCHAR(32) NOT NULL,
ice_id VARCHAR(32) NOT NULL,
os_layer VARCHAR(32) NOT NULL -- 'confidence' | 'kernel' | 'execution'
CHECK (os_layer IN ('confidence', 'kernel', 'execution')),
os_description TEXT NOT NULL,
analogy TEXT, -- 类比说明
relationship TEXT, -- 与其他层的关系说明
status VARCHAR(16) NOT NULL DEFAULT 'active'
CHECK (status IN ('active', 'deprecated')),
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);