# Table structure for table `quiz_match_sub`
#
-CREATE TABLE `prefix_quiz_match_sub` (
+CREATE TABLE prefix_quiz_match_sub (
id SERIAL PRIMARY KEY,
question integer NOT NULL default '0',
questiontext text NOT NULL default '',
name varchar(255) NOT NULL default '',
questiontext text NOT NULL default '',
image varchar(255) NOT NULL default '',
- defaultgrade integer NOT NULL default '1'
+ defaultgrade integer NOT NULL default '1',
qtype integer NOT NULL default '0'
);
# --------------------------------------------------------
CREATE TABLE prefix_quiz_randomsamatch (
id SERIAL PRIMARY KEY,
question integer NOT NULL default '0',
- choose integer NOT NULL default '4',
+ choose integer NOT NULL default '4'
);
#