Got cool stuff working

This commit is contained in:
2025-03-20 08:11:41 +01:00
parent 896ac66ab0
commit 8490a8c029
12 changed files with 316 additions and 13 deletions

13
migrations/1_initial.sql Normal file
View File

@@ -0,0 +1,13 @@
create table assets (
qr integer unique,
type text not null,
brand text,
name text,
description text
) strict;
create table worklog (
asset integer not null,
timestamp integer not null,
action text not null
) strict;