minor: sqlx example: indentation

This commit is contained in:
Gerasimos (Makis) Maropoulos 2020-08-30 18:25:34 +03:00
parent b9f38be9ea
commit 5f0a43cbc0
No known key found for this signature in database
GPG Key ID: 5DBE766BD26A54E7

View File

@ -31,9 +31,9 @@ type Person struct {
const schema = `
CREATE TABLE IF NOT EXISTS person (
person_id INTEGER PRIMARY KEY,
first_name text,
last_name text,
email text
first_name text,
last_name text,
email text
);`
func main() {