2025-07-11 18:48:37 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS `dienstvertretung` (
|
2021-03-10 12:58:12 +01:00
|
|
|
`Oid` bigint NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`Tid` int DEFAULT NULL,
|
|
|
|
|
`IsActive` tinyint DEFAULT NULL,
|
|
|
|
|
`Notice` varchar(1024) DEFAULT NULL,
|
|
|
|
|
`InsTs` datetime DEFAULT NULL,
|
|
|
|
|
`InsUser` varchar(256) DEFAULT NULL,
|
|
|
|
|
`Version` bigint DEFAULT NULL,
|
|
|
|
|
`UdpUser` varchar(256) DEFAULT NULL,
|
|
|
|
|
`SystemEntryID` int DEFAULT NULL,
|
|
|
|
|
`EmployeeOid` bigint DEFAULT NULL,
|
|
|
|
|
`WohnheimOid` bigint DEFAULT NULL,
|
|
|
|
|
`DienstOid` bigint DEFAULT NULL,
|
|
|
|
|
`Zeile` int DEFAULT NULL,
|
|
|
|
|
`Datum` datetime DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`Oid`)
|
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
|