CREATE TABLE `geothms` (
  `geothmsId` int(11) NOT NULL AUTO_INCREMENT,
  `majorVersion` int(11) NOT NULL,
  `minorVersion` int(11) NOT NULL,
  `buildVersion` int(11) NOT NULL,
  `epoch` date NOT NULL,
  `authorId` int(11) NOT NULL,
  `description` varchar(225) DEFAULT NULL,
  PRIMARY KEY (`geothmsId`),
  KEY `fkTGTPAuthors` (`authorId`),
  CONSTRAINT `fkGeoThmsAuthors` FOREIGN KEY (`authorId`) REFERENCES `authors` (`authorId`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 COMMENT='GeoThms - Geometry Framework'