Remove autoincrement since we incrementing the ID in the storage layer

pull/244/head
Mark Haines 2015-08-24 17:48:57 +01:00
parent 745b72660a
commit 037481a033
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
*/
CREATE TABLE IF NOT EXISTS refresh_tokens(
id INTEGER PRIMARY KEY AUTOINCREMENT,
id INTEGER PRIMARY KEY,
token TEXT NOT NULL,
user_id TEXT NOT NULL,
UNIQUE (token)