add: 登录
This commit is contained in:
@@ -1,3 +1,19 @@
|
||||
drop table if exists `user`
|
||||
|
||||
create table user
|
||||
(
|
||||
id int unsigned auto_increment
|
||||
primary key,
|
||||
create_time datetime null,
|
||||
update_time datetime null,
|
||||
username varchar(100) not null,
|
||||
password varchar(255) not null,
|
||||
nickname varchar(100) null
|
||||
)
|
||||
comment '用户表';
|
||||
|
||||
|
||||
|
||||
drop table if exists `goal`;
|
||||
|
||||
CREATE TABLE if not exists `goal`
|
||||
|
Reference in New Issue
Block a user