mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 19:42:56 +08:00
Merge pull request #13868 from dataease/pr@dev-v2@fix_desktop
fix: 补充桌面版缺失flyway
This commit is contained in:
commit
62fa3060b7
@ -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`
|
||||
|
Loading…
Reference in New Issue
Block a user