diff --git a/README.md b/README.md index cf26a04..2ba4a42 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ dependencies: require "sqlite3" DB.open "sqlite3://./data.db" do |db| - db.exec "create table contacts (name string, age integer)" + db.exec "create table contacts (name text, age integer)" db.exec "insert into contacts values (?, ?)", "John Doe", 30 args = [] of DB::Any