fix(系统设置): 修复 Missing URI template variable, 修复初始化模块状态

This commit is contained in:
Captain.B 2021-04-16 11:19:36 +08:00 committed by 刘瑞斌
parent 03defc8950
commit 95d9c198f1
3 changed files with 16 additions and 4 deletions

@ -1 +1 @@
Subproject commit 5f113d50f0d1d3c410b8ccd94cb5c9c944f2272c Subproject commit 6c135805bf36891ea58d92955c79091e923ea500

View File

@ -131,6 +131,18 @@ alter table test_case
add expected_result text null; add expected_result text null;
-- api_scenario_report modify column length -- api_scenario_report modify column length
ALTER TABLE api_scenario_report MODIFY COLUMN name VARCHAR(3000); ALTER TABLE api_scenario_report
MODIFY COLUMN name VARCHAR(3000);
-- api_scenario_report modify column length -- api_scenario_report modify column length
ALTER TABLE api_scenario_report MODIFY COLUMN scenario_id VARCHAR(3000); ALTER TABLE api_scenario_report
MODIFY COLUMN scenario_id VARCHAR(3000);
-- module management
INSERT INTO system_parameter (param_key, param_value, type, sort)
VALUES ('metersphere.module.api', 'ENABLE', 'text', 1);
INSERT INTO system_parameter (param_key, param_value, type, sort)
VALUES ('metersphere.module.performance', 'ENABLE', 'text', 1);
INSERT INTO system_parameter (param_key, param_value, type, sort)
VALUES ('metersphere.module.reportStat', 'ENABLE', 'text', 1);
INSERT INTO system_parameter (param_key, param_value, type, sort)
VALUES ('metersphere.module.testTrack', 'ENABLE', 'text', 1);

@ -1 +1 @@
Subproject commit 449b55084bd1721b2ebf25bfc82d255354092c3b Subproject commit e4b1f5838f00791b42b394ad00a365a14f28be83