From 051902e195f786f9054198bd8c43365f520aa9ce Mon Sep 17 00:00:00 2001 From: Alejandro Perez Pujante Date: Sat, 9 Dec 2023 16:55:53 +0100 Subject: [PATCH] fix: session migration (#1292) --- documentation/src/pages/database/sqlite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) )