WIP: initial commit

This commit is contained in:
jdl
2026-06-25 13:14:06 +02:00
parent 8f3fac98a9
commit 9f4c86f39f
19 changed files with 1036 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
TABLE users OF User NoDelete (
user_id string AS UserID PK,
email string AS Email NoUpdate,
name string AS Name NoInsert,
admin bool AS Admin NoInsert NoUpdate
);