wip
This commit is contained in:
13
sqlgen/test-files/TestParse/004.def
Normal file
13
sqlgen/test-files/TestParse/004.def
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user