fix(schema): change flow_data column type from text to longtext (#2590)

Co-authored-by: tam <tanwe@fulan.com.cn>
This commit is contained in:
Tam
2025-04-09 12:36:19 +08:00
committed by GitHub
parent e9ce534ca1
commit ae4112cf35
3 changed files with 5 additions and 2 deletions

View File

@@ -295,7 +295,7 @@ CREATE TABLE `dbgpt_serve_flow` (
`uid` varchar(128) NOT NULL COMMENT 'Unique id',
`dag_id` varchar(128) DEFAULT NULL COMMENT 'DAG id',
`name` varchar(128) DEFAULT NULL COMMENT 'Flow name',
`flow_data` text COMMENT 'Flow data, JSON format',
`flow_data` longtext COMMENT 'Flow data, JSON format',
`user_name` varchar(128) DEFAULT NULL COMMENT 'User name',
`sys_code` varchar(128) DEFAULT NULL COMMENT 'System code',
`gmt_created` datetime DEFAULT NULL COMMENT 'Record creation time',