blob: 6114fc3dce70b873d83b9bfe447227f50ab5a153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
CREATE TABLE IF NOT EXISTS `coursememberadmissions` (
`rule_id` varchar(32),
`message` text NOT NULL,
`start_time` int(11) NOT NULL DEFAULT 0,
`end_time` int(11) NOT NULL DEFAULT 0,
`course_id` varchar(32) NOT NULL DEFAULT '',
`modus` tinyint(1) NOT NULL DEFAULT 0,
`mkdate` int(11) NOT NULL DEFAULT 0,
`chdate` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`rule_id`)
) ENGINE=MyISAM;
|