Merge pull request #13868 from dataease/pr@dev-v2@fix_desktop

fix: 补充桌面版缺失flyway
This commit is contained in:
xuwei-fit2cloud 2024-12-05 18:18:29 +08:00 committed by GitHub
commit 62fa3060b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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`