fix: usertype length
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-09-21 19:35:55 +08:00
parent 9b8ffca752
commit 2894f37719
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -777,7 +777,7 @@ CREATE TABLE `user_info` (
`usergroup` char(1) NOT NULL DEFAULT 'U',
`username` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`realname` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`usertype` varchar(50) NOT NULL DEFAULT 'student',
`usertype` varchar(250) NOT NULL DEFAULT 'student',
`email` varchar(50) NOT NULL,
`password` char(32) NOT NULL,
`svn_password` char(10) NOT NULL,