major features update

This commit is contained in:
Robert Perce 2025-11-27 13:45:21 -06:00
parent 519fb49901
commit 4e2fab67c5
48 changed files with 3925 additions and 208 deletions

View file

@ -0,0 +1,5 @@
create table if not exists users (
id integer primary key autoincrement,
username not null unique,
password not null
);

View file

@ -0,0 +1,5 @@
alter table users add column
ephemeral boolean not null default false
;
update users set ephemeral = false where ephemeral is null;