// This SQL statement creates the table. // One row, with any content is needed for the test, // the c_id for that row must be "1". CREATE TABLE `co_config` ( `c_id` bigint(20) NOT NULL auto_increment, `isd_id` bigint(20) NOT NULL default '0', `module_id` varchar(6) NOT NULL default '', `code` varchar(30) NOT NULL default '', `val` text NOT NULL, `has_disp_value` int(11) NOT NULL default '0', PRIMARY KEY (`c_id`), UNIQUE KEY `isd_id` (`isd_id`,`module_id`,`code`) ) TYPE=MyISAM