add bestellung

This commit is contained in:
2025-11-09 21:45:45 +01:00
parent 2efe0b116a
commit 07762e8b76
4 changed files with 14 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
// Entity Bestellung
#BaseModel
Bestellung {
id: int { @Id @AutoIncremented @ObjectType } ;
code: string { @Unique @NotNull } ;
reserved: timestamp { @NotNull } ;
booked: timestamp { } ;
cancelled: timestamp { } ;
mail: string { } ;
}