Include required length value for "varchar" column type

This commit is contained in:
Jared Katz
2019-12-17 15:40:00 -05:00
parent 7ea55313c6
commit b7f0102dd7

View File

@@ -121,7 +121,7 @@ Initialize the directory, and load some data:
```
$ dolt init
Successfully initialized dolt data repository.
$ dolt sql -q "create table state_populations ( state varchar, population int, primary key (state) )"
$ dolt sql -q "create table state_populations ( state varchar(14), population int, primary key (state) )"
$ dolt sql -q "show tables"
+-------------------+
| tables |