- sd_projects: add workspace_dir field - sd_project_repos: new table for multi-repo per project - sd_org_settings: org-level workspace_root + skills_dir - pipeline_deliverables: add repo_name, target_path, deliverable_type enum - cockpit_chat.dspy: load repos+org settings, pass to LLM prompt
22 lines
887 B
JSON
22 lines
887 B
JSON
{
|
|
"summary": [
|
|
{
|
|
"name": "sd_org_settings",
|
|
"title": "组织SDLC设置",
|
|
"primary": ["id"],
|
|
"catelog": "entity"
|
|
}
|
|
],
|
|
"fields": [
|
|
{"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"},
|
|
{"name": "org_id", "title": "组织ID", "type": "str", "length": 32, "nullable": "no"},
|
|
{"name": "workspace_root", "title": "工作空间根路径", "type": "str", "length": 500, "nullable": "no"},
|
|
{"name": "skills_dir", "title": "企业Skills目录", "type": "str", "length": 500},
|
|
{"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"},
|
|
{"name": "updated_at", "title": "更新时间", "type": "timestamp"}
|
|
],
|
|
"indexes": [
|
|
{"name": "idx_sos_org", "idxtype": "unique", "idxfields": ["org_id"]}
|
|
]
|
|
}
|