From c342a897041c16cca328405bd06e4cdc5701c273 Mon Sep 17 00:00:00 2001 From: wangchen147 <30853657+wangchen147@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:55:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=89=E8=A3=85sql=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- niucloud/app/install/source/database.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/niucloud/app/install/source/database.sql b/niucloud/app/install/source/database.sql index 967b7b46a..5b0c031d9 100644 --- a/niucloud/app/install/source/database.sql +++ b/niucloud/app/install/source/database.sql @@ -517,7 +517,7 @@ CREATE TABLE `site` ( `app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '站点主应用', `addons` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '站点包含的插件', PRIMARY KEY (`site_id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 10000 utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '站点表' ROW_FORMAT = Dynamic; +) ENGINE = InnoDB AUTO_INCREMENT = 10000 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '站点表' ROW_FORMAT = Dynamic; DROP TABLE IF EXISTS `site_account_log`; CREATE TABLE `site_account_log` ( @@ -775,7 +775,7 @@ CREATE TABLE `sys_user` ( `update_time` int(11) NOT NULL DEFAULT 0 COMMENT '更新时间', PRIMARY KEY (`uid`) USING BTREE, INDEX `uid`(`uid` ASC) USING BTREE -) ENGINE = InnoDB utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '后台管理员表' ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '后台管理员表' ROW_FORMAT = Dynamic; DROP TABLE IF EXISTS `sys_user_log`; CREATE TABLE `sys_user_log` (