2026-05-08 11:51:10 +08:00
|
|
|
package public
|
|
|
|
|
|
|
|
|
|
// 数据库名称
|
|
|
|
|
const (
|
|
|
|
|
DbNameBlackDeacon = "black_deacon"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 数据库表名
|
|
|
|
|
const (
|
2026-06-10 14:23:55 +08:00
|
|
|
TableNameCreationInfo = "creation_info"
|
|
|
|
|
TableNameFlowExecution = "flow_execution"
|
|
|
|
|
TableNameFlowTemplate = "flow_template"
|
|
|
|
|
TableNameFlowUser = "flow_user"
|
|
|
|
|
TableNameSkillTemplate = "skill_template"
|
|
|
|
|
TableNameSkillUser = "skill_user"
|
|
|
|
|
TableNameFileTemp = "file_temp"
|
|
|
|
|
TableNameActivePull = "active_pull"
|
|
|
|
|
TableNameWorkflowInterrupt = "workflow_interrupt"
|
|
|
|
|
TableNameNodePrompt = "node_prompt"
|
|
|
|
|
TableNameNodeExecution = "node_execution"
|
2026-05-08 11:51:10 +08:00
|
|
|
)
|