Files
BeWoPlaner/Model/Changes_2019_07_12 FlexibleReportLayout hinzugefügt.txt

17 lines
645 B
Plaintext

CREATE TABLE IF NOT EXISTS `flexiblereportlayout` (
`Oid` bigint(19) NOT NULL AUTO_INCREMENT,
`Tid` int(10) DEFAULT NULL,
`IsActive` tinyint(4) DEFAULT NULL,
`Notice` varchar(1024) DEFAULT NULL,
`InsTs` datetime DEFAULT NULL,
`InsUser` varchar(256) DEFAULT NULL,
`Version` bigint(19) DEFAULT NULL,
`UdpUser` varchar(256) DEFAULT NULL,
`SystemEntryID` int(10) DEFAULT NULL,
`CreatorOid` bigint(19) NOT NULL,
`LayoutName` varchar(1024) NOT NULL,
`LayoutString` mediumtext NOT NULL,
PRIMARY KEY (`Oid`),
CONSTRAINT FOREIGN KEY (`CreatorOid`) REFERENCES `applicationuser` (`oid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1