2025-07-11 18:48:37 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS `quittierungsbelegsstatus` (
|
2020-11-09 17:55:01 +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,
|
|
|
|
|
`CustomerOid` bigint DEFAULT NULL,
|
|
|
|
|
`Startdatum` datetime DEFAULT NULL,
|
|
|
|
|
`Enddatum` datetime DEFAULT NULL,
|
|
|
|
|
`Erstellt` tinyint DEFAULT '0',
|
|
|
|
|
`ErstelltVon` varchar(50) DEFAULT NULL,
|
|
|
|
|
`ErstelltAm` datetime DEFAULT NULL,
|
|
|
|
|
`OrganisationOid` bigint DEFAULT '0',
|
|
|
|
|
`EmployeeOid` bigint DEFAULT '0',
|
|
|
|
|
`ServiceCategoryOid` bigint DEFAULT '0',
|
|
|
|
|
`Unterschrieben` tinyint DEFAULT '0',
|
|
|
|
|
`UnterschriebenAm` datetime DEFAULT NULL,
|
|
|
|
|
`UnterschriebenVon` varchar(50) DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`Oid`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|