fix(youlai_boot.sql): 修复SQL脚本 sys_user 表的 id 字段类型不正确

Closes #IBJQXR
This commit is contained in:
Ray.Hao
2025-02-06 09:51:31 +08:00
parent e43883f7c2
commit 5b97e69ef9
2 changed files with 2 additions and 2 deletions

View File

@@ -351,7 +351,7 @@ INSERT INTO `sys_role_menu` VALUES (2, 143);
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` (
`id` int NOT NULL AUTO_INCREMENT,
`id` bigint NOT NULL AUTO_INCREMENT,
`username` varchar(64) DEFAULT NULL COMMENT '用户名',
`nickname` varchar(64) DEFAULT NULL COMMENT '昵称',
`gender` tinyint(1) NULL DEFAULT 1 COMMENT '性别((1-男 2-女 0-保密)',