Initial commit; adaptation from mascarpone

This commit is contained in:
Robert Perce 2026-05-30 12:15:04 -05:00
commit 3d45ec4b0a
36 changed files with 5877 additions and 0 deletions

View file

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