aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2022-03-27 05:19:12 +0200
committerTeddy Wing2022-03-27 05:19:12 +0200
commit00e89cc89756c8a0d2c94441c09552c9fc2606c2 (patch)
tree06202d122152a1c16fbb41248950d7842e1a399a
parent34c607824c0d1217932724663325c045b8f3cea2 (diff)
downloadyaqlite-00e89cc89756c8a0d2c94441c09552c9fc2606c2.tar.bz2
README: Remove extra indentation in `CREATE TABLE` query
It's unnecessary.
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index ca4b36a..df71ba5 100644
--- a/README.md
+++ b/README.md
@@ -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