· 8 years ago · Mar 09, 2018, 04:00 AM
1DROP TABLE IF EXISTS `scos`;
2CREATE TABLE `scos` (
3 `sco_key` int(11) NOT NULL auto_increment,
4 `module_key` int(11) default NULL,
5 `sco_name` text,
6 `lesson_location` text,
7 `start_location` text,
8 `lesson_status` text,
9 `score_raw` int(11) default NULL,
10 `score_max` int(11) default NULL,
11 `total_time` text,
12 `exit` text,
13 `sco_starttime` text,
14 `sco_endtime` text,
15 `discard` text,
16 `sco_inittime` text,
17 PRIMARY KEY (`sco_key`),
18 KEY `scos_sco_name` (`sco_name`(5))
19) ENGINE=InnoDB DEFAULT CHARSET=utf8;