create table user, and fix table session

This commit is contained in:
bronku 2025-03-28 15:01:28 +01:00
parent 93afc14386
commit 323d574374

View file

@ -0,0 +1,11 @@
create table user (login text primary key, password text, role text);
drop table session;
create table session (
token text primary key,
user text,
expiration text
);
pragma user_version = 7;