refactor: restructure host message handling by implementing specialized handlers and updating database schema documentation

This commit is contained in:
2026-05-11 10:50:51 +02:00
parent 6c4fabe603
commit aecf032f22
31 changed files with 99 additions and 2 deletions

View File

@@ -1 +1,6 @@
## Aufbau Tabelle Aisle in Relationenschreibweise
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
Aisle(StorageArea [PK] string not_null, AisleName [PK] string not_null, Type string not_null, IsReady bool not_null, IsBlocked bool not_null, VerticalPosition int not_null, HorizontalPosition int not_null, Depth int not_null, MaintenanceLevel int not_null, Description string null, HandlingUnitType string not_null, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)