This commit is contained in:
2023-09-27 16:24:17 +08:00
parent 20de0ab0e5
commit 2050ab99a9
2 changed files with 5 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ nrf:
comment: ""
registeredNFs:
display: "Registered NFs"
method: "get"
array:
- name: "index"
type: "int"

View File

@@ -75,4 +75,7 @@ INSERT IGNORE INTO `omc_db`.`config` (`module_name`, `config_tag`, `title_json`,
VALUES ('System', 'logo', '{\"cn\":\"系统LOGO\",\"en\":\"System LOGO\"}', 'logo30.png', '', '');
ALTER TABLE `omc_db`.`security_log`
MODIFY COLUMN `id` int(10) NOT NULL AUTO_INCREMENT FIRST;
MODIFY COLUMN `id` int(10) NOT NULL AUTO_INCREMENT FIRST;
ALTER TABLE `omc_db`.`param_config`
ADD COLUMN IF NOT EXISTS `method` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '*' COMMENT 'method allow: \"get\", \"get,post,put\", \"*\"' AFTER `top_display`;