From bb132abe28c5f6db22093470e894d95fc6456814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AD=E5=A6=82?= <8775@163.com> Date: Thu, 20 Feb 2025 10:45:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8A=A0=E8=BD=BDi18n?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sop.sql | 2 +- upgrade/sop-20250209.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sop.sql b/sop.sql index c2d28bbf..86400be8 100755 --- a/sop.sql +++ b/sop.sql @@ -473,4 +473,4 @@ INSERT INTO `sys_user_role` (`id`, `role_id`, `user_id`, `add_time`, `update_tim -- ALTER 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`; diff --git a/upgrade/sop-20250209.sql b/upgrade/sop-20250209.sql index e2fd5879..6ccbfe54 100644 --- a/upgrade/sop-20250209.sql +++ b/upgrade/sop-20250209.sql @@ -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`;