You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
demo | 2 months ago | |
moz-todo-vue | 2 months ago | |
.gitattributes | 2 months ago | |
.gitignore | 2 months ago | |
README.md | 2 months ago | |
todo-list.png | 2 months ago |
README.md
the_second_work
在本地配置mysql环境并创建userservice数据库,在application.yml配置文件中设置数据库账号密码,根据下面sql语句建表:
CREATE TABLE user (
id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
age INT NOT NULL
);