Files
PMail/server/config/tables/mysql/user.sql
jinnrry c0f12558b5 init
2023-08-06 09:33:51 +08:00

8 lines
364 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE user
(
id INT unsigned AUTO_INCREMENT PRIMARY KEY COMMENT '自增id',
account varchar(20) COMMENT '账号登陆名',
name varchar(10) COMMENT '用户名',
password char(32) COMMENT '登陆密码两次md5加盐md5(md5(password+"pmail") +"pmail2023")',
UNIQUE INDEX udx_account ( account )
)COMMENT='登陆信息表'