diff options
author | Teddy Wing | 2022-03-27 05:19:12 +0200 |
---|---|---|
committer | Teddy Wing | 2022-03-27 05:19:12 +0200 |
commit | 00e89cc89756c8a0d2c94441c09552c9fc2606c2 (patch) | |
tree | 06202d122152a1c16fbb41248950d7842e1a399a | |
parent | 34c607824c0d1217932724663325c045b8f3cea2 (diff) | |
download | yaqlite-00e89cc89756c8a0d2c94441c09552c9fc2606c2.tar.bz2 |
README: Remove extra indentation in `CREATE TABLE` query
It's unnecessary.
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -7,13 +7,13 @@ database and selecting records as YAML. ## Usage $ sqlite3 test.db <<EOF - CREATE TABLE "restaurants" ( - id INTEGER PRIMARY KEY, + CREATE TABLE "restaurants" ( + id INTEGER PRIMARY KEY, - name TEXT, - description TEXT, - rating INTEGER - ); + name TEXT, + description TEXT, + rating INTEGER + ); EOF $ yaqlite insert --database test.db restaurants <<EOF |