aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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