V2 /
ConfigCategoryA list of Categories that Events can be assigned to SchemaCREATE TABLE `schedule_categories` ( `cat_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `cat_cid` smallint(5) unsigned NOT NULL DEFAULT '0', `cat_name` varchar(15) DEFAULT NULL, `cat_active` tinyint(1) DEFAULT NULL, `cat_desc` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`cat_id`), KEY `cat_name` (`cat_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 See Also
|