Skip to content
Snippets Groups Projects
Commit aa361f51 authored by Mark Haines's avatar Mark Haines
Browse files

Merge pull request #244 from matrix-org/markjh/refresh_tokens

Remove autoincrement since we incrementing the ID in the storage layer
parents 745b7266 037481a0
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment