修复加载i18n问题

This commit is contained in:
六如
2025-02-20 10:45:41 +08:00
parent e3e6ae4d7f
commit bb132abe28
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
-- 2025-02-09更新
-- api_info表新增api_mode字段
ALTER TABLE `api_info`
ADD COLUMN `api_mode` tinyint(4) NOT NULL DEFAULT '1' COMMENT '接口模式1-open接口2-Restful模式' AFTER `reg_source`;
ADD COLUMN `api_mode` tinyint(4) NULL DEFAULT '1' COMMENT '接口模式1-open接口2-Restful模式' AFTER `reg_source`;