Merge pull request #11411 from ulleo/dev-v2

fix(X-Pack): 修复数据填报缺失flyway
This commit is contained in:
ulleo 2024-08-07 16:16:18 +08:00 committed by GitHub
commit 9834ea773b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,6 @@
BEGIN;
INSERT INTO `core_sys_startup_job` VALUES ('chartFilterDynamic', 'chartFilterDynamic', 'ready');
COMMIT;
alter table `core_datasource`
add `enable_data_fill` tinyint default 0 null comment '启用数据填报功能';

View File

@ -1,3 +1,6 @@
BEGIN;
INSERT INTO `core_sys_startup_job` VALUES ('chartFilterDynamic', 'chartFilterDynamic', 'ready');
COMMIT;
alter table `core_datasource`
add `enable_data_fill` tinyint default 0 null comment '启用数据填报功能';