Skip to content

Commit

Permalink
Honor #337
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Apr 26, 2018
1 parent d8860d2 commit 2ae93a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ See [Database Connections](#database-connections)
try dbQueue.write { db in
try db.execute("""
CREATE TABLE places (
id INTEGER PRIMARY KEY,
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
favorite BOOLEAN NOT NULL DEFAULT 0,
latitude DOUBLE NOT NULL,
Expand Down Expand Up @@ -566,7 +566,7 @@ For example:
try dbQueue.write { db in
try db.execute("""
CREATE TABLE players (
id INTEGER PRIMARY KEY,
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
score INT)
""")
Expand Down

0 comments on commit 2ae93a2

Please sign in to comment.