diff options
author | Johannes Rudolph <johannes.rudolph@gmx.com> | 2017-12-28 14:06:27 +0100 |
---|---|---|
committer | Sebastian Reichel <sre@ring0.de> | 2018-06-28 01:52:53 +0200 |
commit | 9c91c7390dde605424e0867ef18deb49473a0f0e (patch) | |
tree | c4dbd1c91ba4288e49f972d5cc68c8f2a38e21fd | |
parent | 06fc726d7a0a74ae4ba26be74da578686992d413 (diff) | |
download | serial-barcode-scanner-9c91c7390dde605424e0867ef18deb49473a0f0e.tar.bz2 |
README: Fix SQL syntax error
-rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,6 +76,6 @@ but you need to modify a few things. === Database === * Create user - `sqlite3 shop.db "INSERT INTO users (id, email, firstname, lastname) VALUES (1, "test@tester", "Firstname", "Lastname");` + `sqlite3 shop.db "INSERT INTO users (id, email, firstname, lastname) VALUES (1, 'test@tester', 'Firstname', 'Lastname');"` * Setup user password `mdbus2 io.mainframe.shopsystem.Database /io/mainframe/shopsystem/database io.mainframe.shopsystem.Database.SetUserPassword 1 "password"` |