6 lines
574 B
Markdown
6 lines
574 B
Markdown
## Aufbau Tabelle OrdersConveyor in Relationenschreibweise
|
|
|
|
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
|
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
|
|
|
OrdersConveyor(Id [PK] int not_null, OrdersHostId [FK] int not_null, Source string not_null, Destination string not_null, PalletizingDestinations string, LeNo [FK] string not_null, Status string not_null, StartTime datetime, Error string, IsManual bool not_null, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Process string not_null, Timestamp datetime not_null) |