Skip to content

Commit

Permalink
Update 02.快速开始.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nieqiurong authored Oct 16, 2023
1 parent 543f2af commit df083d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/01.指南/01.快速入门/02.快速开始.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ DROP TABLE IF EXISTS user;

CREATE TABLE user
(
id BIGINT(20) NOT NULL COMMENT '主键ID',
id BIGINT NOT NULL COMMENT '主键ID',
name VARCHAR(30) NULL DEFAULT NULL COMMENT '姓名',
age INT(11) NULL DEFAULT NULL COMMENT '年龄',
age INT NULL DEFAULT NULL COMMENT '年龄',
email VARCHAR(50) NULL DEFAULT NULL COMMENT '邮箱',
PRIMARY KEY (id)
);
Expand Down

0 comments on commit df083d1

Please sign in to comment.