We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ac242 commit fc1ab00Copy full SHA for fc1ab00
README.md
@@ -201,7 +201,8 @@ For example,
201
Schema schema = new Schema()
202
.addColumn(new Column().setName("id").setType("int(11)").setNullable(false).setPrimaryKey(true))
203
.addColumn(new Column().setName("a").setType("bigint(20)").setNullable(false))
204
- .addColumn(new Column().setName("b").setType("varchar(64)").setNullable(false));
+ .addColumn(new Column().setName("b").setType("varchar(64)").setNullable(false))
205
+ .setCharset("utf8mb4");
206
```
207
208
### 5.2 Creating TableReader
0 commit comments