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,13 @@
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,
SSN string NoUpdate
);
TABLE users_view OF UserView NoInsert NoUpdate NoDelete (
user_id string AS UserID PK,
email string AS Email,
name string AS Name
);