add: 登录

This commit is contained in:
jsh
2025-10-12 16:13:04 +08:00
parent 23ff4c814d
commit 68474c0c80
11 changed files with 188 additions and 1 deletions

View File

@@ -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`