update model for commands

This commit is contained in:
2025-10-18 00:50:58 +02:00
parent 99ccd6f863
commit 53a6fdf775
27 changed files with 427 additions and 72 deletions

View File

@@ -1,9 +1,10 @@
// Entity Eintrittskarte
#BaseModel
Eintrittskarte {
id: int { @Id @AutoIncremented } ;
show: Vorstellung {} ;
seat: Sitzplatz {} ;
code: string {} ;
state: Kartenstatus {} ;
show: Vorstellung { } ;
seat: Sitzplatz { } ;
code: string { @Unique } ;
state: Kartenstatus { } ;
}