From b7f0102dd7c558c488486f6cd3fcc04565998c9d Mon Sep 17 00:00:00 2001 From: Jared Katz Date: Tue, 17 Dec 2019 15:40:00 -0500 Subject: [PATCH] Include required length value for "varchar" column type --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e66e15880..bb922cab7d 100644 --- a/README.md +++ b/README.md @@ -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 |