fix: 补充桌面版缺失flyway

This commit is contained in:
junjun 2024-12-05 17:47:48 +08:00
parent 34bc5d710d
commit 7da1c7060b

View File

@ -48,6 +48,16 @@ INSERT INTO `core_copilot_config` VALUES (1, 'https://copilot.dataease.cn', 'xla
UPDATE `core_sys_setting` SET `pkey` = 'ai.baseUrl', `pval` = 'https://maxkb.fit2cloud.com/ui/chat/2ddd8b594ce09dbb?mode=embed', `type` = 'text', `sort` = 0 WHERE `id` = 3;
DROP TABLE IF EXISTS `core_api_traffic`;
CREATE TABLE `core_api_traffic`
(
`id` bigint NOT NULL COMMENT 'ID',
`api` varchar(255) NOT NULL COMMENT 'api',
`threshold` int NOT NULL DEFAULT '2' COMMENT '阈值',
`alive` int NOT NULL DEFAULT '0' COMMENT '活动并发',
PRIMARY KEY (`id`)
);
ALTER TABLE `visualization_template`
MODIFY COLUMN `node_type` varchar(255) NULL DEFAULT NULL COMMENT '节点类型 app or template 应用 或者 模板';
ALTER TABLE `visualization_template`