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.
|
|
8 months ago | |
|---|---|---|
| demo | 8 months ago | |
| moz-todo-vue | 8 months ago | |
| .gitattributes | 8 months ago | |
| .gitignore | 8 months ago | |
| README.md | 8 months ago | |
| todo-list.png | 8 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
);