guanghulab/brain/persona-brain-db/schema/15-access-grants.sql
铸渊 ICE-GL-ZY001 02a12c2d58
Some checks failed
自动更新代码和重启 / update-and-restart (push) Has been cancelled
CI检查 + 自动部署 / check (push) Has been cancelled
CI检查 + 自动部署 / deploy (push) Has been cancelled
D123+ persona-brain-db 本地化: 25个SQL Schema + import_notion.py
- 21张表完整Schema + init.sql + 3个种子数据文件
- import_notion.py: Notion Markdown导出→documents表导入器
- brain.db本地已建(1.5MB): 137页+完整树形结构(最深11层)
- 种子数据: 13公理·34核心原则·49条原则·12人格体
- 待追加: 第五域剩余分区导出
2026-06-04 16:22:10 +08:00

27 lines
1.4 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.

-- ============================================================
-- 表15access_grants访问权限表
-- 用途:动态权限接口,由冰朔手动生成
-- 冰朔权限控制三层:对国家系统逻辑完全透明 → 国家系统逻辑审核 → 光湖团队审核 → 冰朔本人
-- ============================================================
CREATE TABLE IF NOT EXISTS access_grants (
grant_id VARCHAR(64) PRIMARY KEY,
grantee_type VARCHAR(16) NOT NULL
CHECK (grantee_type IN ('persona', 'system', 'national', 'user', 'emergency')),
grantee_id VARCHAR(64) NOT NULL,
resource_type VARCHAR(32) NOT NULL,
resource_id VARCHAR(64),
permissions TEXT NOT NULL, -- JSON array of permissions
grant_conditions TEXT, -- JSON object of conditions
valid_from TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
valid_until TIMESTAMP,
issued_by VARCHAR(64) NOT NULL,
status VARCHAR(16) NOT NULL DEFAULT 'active'
CHECK (status IN ('active', 'revoked', 'expired')),
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
CREATE INDEX IF NOT EXISTS idx_ag_grantee ON access_grants(grantee_type, grantee_id);
CREATE INDEX IF NOT EXISTS idx_ag_resource ON access_grants(resource_type, resource_id);
CREATE INDEX IF NOT EXISTS idx_ag_status ON access_grants(status);