mirror of https://github.com/TriliumNext/Notes
feat(server/session): update database to hold session information
parent
a3a1667351
commit
ec39667cba
@ -0,0 +1,5 @@
|
||||
CREATE TABLE IF NOT EXISTS sessions (
|
||||
id TEXT PRIMARY KEY,
|
||||
data TEXT,
|
||||
expires INTEGER
|
||||
);
|
||||
Loading…
Reference in New Issue