diff --git a/documentation/src/pages/database/sqlite.md b/documentation/src/pages/database/sqlite.md index ddfa1f381..1e75c0166 100644 --- a/documentation/src/pages/database/sqlite.md +++ b/documentation/src/pages/database/sqlite.md @@ -25,7 +25,7 @@ CREATE TABLE user ( CREATE TABLE session ( id TEXT NOT NULL PRIMARY KEY, - expires_at INTEGER NOT NULL PRIMARY KEY, + expires_at INTEGER NOT NULL, user_id TEXT NOT NULL, FOREIGN KEY (user_id) REFERENCES user(id) )