2025-07-11 18:48:37 +02:00
|
|
|
CREATE TABLE IF NOT EXISTS `supportconcepthistory` (
|
2021-12-01 14:09:56 +01:00
|
|
|
`Oid` bigint NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`SupportConcept_CustomerOid` bigint NOT NULL,
|
|
|
|
|
`SupportConcept_EmployeeOid` bigint DEFAULT NULL,
|
|
|
|
|
`Tid` int NOT NULL,
|
|
|
|
|
`SupportConcept_Conference` tinyint DEFAULT NULL,
|
|
|
|
|
`SupportConcept_Originator` varchar(256) DEFAULT NULL,
|
|
|
|
|
`IsActive` tinyint DEFAULT NULL,
|
|
|
|
|
`Notice` mediumtext,
|
|
|
|
|
`InsTs` datetime DEFAULT NULL,
|
|
|
|
|
`InsUser` varchar(256) DEFAULT NULL,
|
|
|
|
|
`Version` bigint DEFAULT NULL,
|
|
|
|
|
`UdpUser` varchar(256) DEFAULT NULL,
|
|
|
|
|
`SystemEntryID` int DEFAULT NULL,
|
|
|
|
|
`SupportConcept_ConferenceDate` datetime DEFAULT NULL,
|
|
|
|
|
`SupportConcept_ApprovalDate` datetime DEFAULT NULL,
|
|
|
|
|
`SupportConcept_ConsultingNeeded` tinyint DEFAULT NULL,
|
|
|
|
|
`SupportConcept_RenewalSendDate` datetime DEFAULT NULL,
|
|
|
|
|
`SupportConcept_RequisitionSendDate` datetime DEFAULT NULL,
|
|
|
|
|
`SupportConcept_SupportConceptSendDate` datetime DEFAULT NULL,
|
|
|
|
|
`SupportConcept_ConferenceVenue` varchar(1024) DEFAULT NULL,
|
|
|
|
|
`ChangeType` tinyint DEFAULT NULL,
|
|
|
|
|
`SupportConceptOid` bigint DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`Oid`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|