From PmWiki

V2: ConDetail

Contains overview information about a specific EVENT. Note that v1 of CONGO used 'Convention', and throughout most of the code 'c' or 'con' is used rather than 'e' as the prefix for these columns

Schema

con_detail | CREATE TABLE `con_detail` (
  `con_cid` int(8) DEFAULT NULL COMMENT 'Unique ID',
  `con_name` varchar(40) DEFAULT NULL,
  `con_location` varchar(50) DEFAULT NULL,
  `con_start` datetime DEFAULT NULL,
  `con_end` datetime DEFAULT NULL,
  `con_comment` text,
  `con_website` varchar(80) DEFAULT NULL,
  `con_email` varchar(60) DEFAULT NULL,
  `con_description` text,
  `con_stylesheet` text,
  `con_badgelayout` text,
  KEY `cid` (`con_cid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 | 

See Also

Retrieved from http://congo.wiki.stonekeep.com/V2/ConDetail
Page last modified on January 20, 2012, at 03:08 PM