- models/ 重建为正确表定义格式(summary+fields+indexes),覆盖全部 11 个表 修正原 models/ 误放 CRUD 格式副本(缺 summary)导致 json2ddl 100% 失败被静默忽略 - json/ 6 个 CRUD 定义 tblname 加前缀 + 文件改名 - 129 处 SQL/sor 表名加 rag_ 前缀(URL 路径 knowledge_bases_list 保持不变) - 新增 init/migrate_rag_prefix.sql 幂等 RENAME TABLE 迁移
135 lines
3.1 KiB
JSON
135 lines
3.1 KiB
JSON
{
|
|
"summary": [
|
|
{
|
|
"name": "rag_subscriptions",
|
|
"title": "租户订阅",
|
|
"primary": [
|
|
"id"
|
|
]
|
|
}
|
|
],
|
|
"fields": [
|
|
{
|
|
"name": "id",
|
|
"title": "ID",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "org_id",
|
|
"title": "机构ID",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "plan_name",
|
|
"title": "套餐名称",
|
|
"type": "str",
|
|
"length": 64,
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "disk_quota_bytes",
|
|
"title": "磁盘配额(字节)",
|
|
"type": "int",
|
|
"nullable": "yes",
|
|
"default": "1073741824"
|
|
},
|
|
{
|
|
"name": "disk_used_bytes",
|
|
"title": "已用磁盘(字节)",
|
|
"type": "int",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "doc_quota",
|
|
"title": "文档数配额",
|
|
"type": "int",
|
|
"nullable": "yes",
|
|
"default": "1000"
|
|
},
|
|
{
|
|
"name": "doc_used",
|
|
"title": "已用文档数",
|
|
"type": "int",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "kb_quota",
|
|
"title": "知识库数配额",
|
|
"type": "int",
|
|
"nullable": "yes",
|
|
"default": "10"
|
|
},
|
|
{
|
|
"name": "kb_used",
|
|
"title": "已用知识库数",
|
|
"type": "int",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "api_call_quota",
|
|
"title": "API调用配额(月)",
|
|
"type": "int",
|
|
"nullable": "yes",
|
|
"default": "10000"
|
|
},
|
|
{
|
|
"name": "api_call_used",
|
|
"title": "已用API调用(月)",
|
|
"type": "int",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "start_date",
|
|
"title": "开始日期",
|
|
"type": "date",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "end_date",
|
|
"title": "结束日期",
|
|
"type": "date",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "status",
|
|
"title": "状态",
|
|
"type": "str",
|
|
"length": 16,
|
|
"nullable": "yes",
|
|
"default": "active"
|
|
},
|
|
{
|
|
"name": "created_at",
|
|
"title": "创建时间",
|
|
"type": "datetime",
|
|
"nullable": "yes"
|
|
},
|
|
{
|
|
"name": "updated_at",
|
|
"title": "更新时间",
|
|
"type": "datetime",
|
|
"nullable": "yes"
|
|
}
|
|
],
|
|
"indexes": [
|
|
{
|
|
"name": "idx_sub_org",
|
|
"idxtype": "unique",
|
|
"idxfields": [
|
|
"org_id"
|
|
]
|
|
},
|
|
{
|
|
"name": "idx_sub_status",
|
|
"idxtype": "index",
|
|
"idxfields": [
|
|
"status"
|
|
]
|
|
}
|
|
]
|
|
}
|