Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
neoremind committed Jan 29, 2020
1 parent d4ac242 commit fc1ab00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ For example,
Schema schema = new Schema()
.addColumn(new Column().setName("id").setType("int(11)").setNullable(false).setPrimaryKey(true))
.addColumn(new Column().setName("a").setType("bigint(20)").setNullable(false))
.addColumn(new Column().setName("b").setType("varchar(64)").setNullable(false));
.addColumn(new Column().setName("b").setType("varchar(64)").setNullable(false))
.setCharset("utf8mb4");
```

### 5.2 Creating TableReader
Expand Down

0 comments on commit fc1ab00

Please sign in to comment.