Refactor store: use migrations and split logic

This commit is contained in:
bronku 2025-03-23 19:54:01 +01:00
parent 376edd7267
commit 922710a2cd
6 changed files with 250 additions and 212 deletions

View file

@ -0,0 +1,8 @@
create table session (
token text primary key,
user_name text,
created text,
lastAccess text
);
PRAGMA user_version = 2;