adjustment code

This commit is contained in:
zhuyasen
2022-11-21 22:12:49 +08:00
parent 116070c00c
commit 5f1ee1dcf0
138 changed files with 1176 additions and 1242 deletions

View File

@@ -13,12 +13,12 @@ create table user
created_at datetime null,
updated_at datetime null,
deleted_at datetime null,
name char(50) not null comment '用户名',
password char(100) not null comment '密码',
email char(50) not null comment '邮件',
phone bigint unsigned not null comment '手机号码',
age tinyint not null comment '年龄',
gender tinyint not null comment '性别1:男2:女3:未知',
name char(50) not null comment 'username',
password char(100) not null comment 'password',
email char(50) not null comment 'email',
phone bigint unsigned not null comment 'phone number',
age tinyint not null comment 'age',
gender tinyint not null comment 'gender, 1:male, 2:female, 3:unknown',
constraint user_email_uindex
unique (email)
);