From: pkiddie <pk...@us...> - 2005-09-12 09:47:18
|
Update of /cvsroot/stack/stack-1-0/scripts/rqp/moodle_16_rqp/quiz/db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16221/scripts/rqp/moodle_16_rqp/quiz/db Added Files: mysql.php mysql.sql postgres7.php postgres7.sql Log Message: Moodle V1.6 updated files - until new RQP code on Moodle CVS repository, overwrite latest distribution with these files --- NEW FILE: mysql.php --- <?php // $Id: mysql.php,v 1.1 2005/09/12 09:46:59 pkiddie Exp $ function quiz_upgrade($oldversion) { // This function does anything necessary to upgrade // older versions to match current functionality global $CFG, $QUIZ_QTYPES, $db; require_once("$CFG->dirroot/mod/quiz/locallib.php"); if ($oldversion < 2002101800) { execute_sql(" ALTER TABLE `quiz_attempts` ". " ADD `timestart` INT(10) UNSIGNED DEFAULT '0' NOT NULL AFTER `sumgrades` , ". " ADD `timefinish` INT(10) UNSIGNED DEFAULT '0' NOT NULL AFTER `timestart` "); execute_sql(" UPDATE `quiz_attempts` SET timestart = timemodified "); execute_sql(" UPDATE `quiz_attempts` SET timefinish = timemodified "); } if ($oldversion < 2002102101) { execute_sql(" DELETE FROM log_display WHERE module = 'quiz' "); execute_sql(" INSERT INTO log_display VALUES ('quiz', 'view', 'quiz', 'name') "); execute_sql(" INSERT INTO log_display VALUES ('quiz', 'report', 'quiz', 'name') "); execute_sql(" INSERT INTO log_display VALUES ('quiz', 'attempt', 'quiz', 'name') "); execute_sql(" INSERT INTO log_display VALUES ('quiz', 'submit', 'quiz', 'name') "); } if ($oldversion < 2002102600) { execute_sql(" ALTER TABLE `quiz_answers` CHANGE `feedback` `feedback` TEXT NOT NULL "); } if ($oldversion < 2002122300) { execute_sql("ALTER TABLE `quiz_grades` CHANGE `user` `userid` INT(10) UNSIGNED DEFAULT '0' NOT NULL "); execute_sql("ALTER TABLE `quiz_attempts` CHANGE `user` `userid` INT(10) UNSIGNED DEFAULT '0' NOT NULL "); } // prefixes required from here on, or use table_column() if ($oldversion < 2003010100) { execute_sql(" ALTER TABLE {$CFG->prefix}quiz ADD review TINYINT(4) UNSIGNED DEFAULT '0' NOT NULL AFTER `grademethod` "); } if ($oldversion < 2003010301) { table_column("quiz_truefalse", "true", "trueanswer", "INTEGER", "10", "UNSIGNED", "0", "NOT NULL", ""); table_column("quiz_truefalse", "false", "falseanswer", "INTEGER", "10", "UNSIGNED", "0", "NOT NULL", ""); table_column("quiz_questions", "type", "qtype", "INTEGER", "10", "UNSIGNED", "0", "NOT NULL", ""); } if ($oldversion < 2003022303) { modify_database ("", "CREATE TABLE `prefix_quiz_randommatch` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `choose` INT UNSIGNED DEFAULT '4' NOT NULL, PRIMARY KEY ( `id` ) );"); } if ($oldversion < 2003030303) { table_column("quiz_questions", "", "defaultgrade", "INTEGER", "6", "UNSIGNED", "1", "NOT NULL", "image"); } if ($oldversion < 2003032601) { execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_answers` ADD INDEX(question) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_attempts` ADD INDEX(quiz) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_attempts` ADD INDEX(userid) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_grades` ADD INDEX(quiz) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_grades` ADD INDEX(userid) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_question_grades` ADD INDEX(quiz) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_question_grades` ADD INDEX(question) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_randommatch` ADD INDEX(question) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_responses` ADD INDEX(attempt) "); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz_responses` ADD INDEX(question) "); } if ($oldversion < 2003033100) { modify_database ("", "ALTER TABLE prefix_quiz_randommatch RENAME prefix_quiz_randomsamatch "); modify_database ("", "CREATE TABLE `prefix_quiz_match` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `subquestions` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `question` (`question`) );"); modify_database ("", "CREATE TABLE `prefix_quiz_match_sub` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `questiontext` text NOT NULL, `answertext` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `question` (`question`) );"); } if ($oldversion < 2003040901) { table_column("quiz", "", "shufflequestions", "INTEGER", "4", "UNSIGNED", "0", "NOT NULL", "review"); table_column("quiz", "", "shuffleanswers", "INTEGER", "4", "UNSIGNED", "0", "NOT NULL", "shufflequestions"); } if ($oldversion < 2003071001) { modify_database ("", " CREATE TABLE `prefix_quiz_numerical` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `answer` int(10) unsigned NOT NULL default '0', `min` varchar(255) NOT NULL default '', `max` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `answer` (`answer`) ) TYPE=MyISAM COMMENT='Options for numerical questions'; "); } if ($oldversion < 2003072400) { execute_sql(" INSERT INTO {$CFG->prefix}log_display VALUES ('quiz', 'review', 'quiz', 'name') "); } if ($oldversion < 2003072901) { modify_database ("", " CREATE TABLE `prefix_quiz_multianswers` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `answers` varchar(255) NOT NULL default '', `positionkey` varchar(255) NOT NULL default '', `answertype` smallint(6) NOT NULL default '0', `norm` int(10) unsigned NOT NULL default '1', PRIMARY KEY (`id`), KEY `question` (`question`) ) TYPE=MyISAM COMMENT='Options for multianswer questions'; "); } if ($oldversion < 2003080301) { execute_sql(" ALTER TABLE {$CFG->prefix}quiz ADD eachattemptbuildsonthelast TINYINT(4) DEFAULT '0' NOT NULL AFTER `attempts` "); } if ($oldversion < 2003080400) { table_column("quiz", "eachattemptbuildsonthelast", "attemptonlast", "TINYINT", "4", "UNSIGNED", "0", "NOT NULL", ""); } if ($oldversion < 2003082300) { table_column("quiz_questions", "", "stamp", "varchar", "255", "", "", "not null", "qtype"); } if ($oldversion < 2003082301) { table_column("quiz_questions", "stamp", "stamp", "varchar", "255", "", "", "not null"); table_column("quiz_questions", "", "version", "integer", "10", "", "1", "not null", "stamp"); if ($questions = get_records("quiz_questions")) { foreach ($questions as $question) { $stamp = make_unique_id_code(); if (!set_field("quiz_questions", "stamp", $stamp, "id", $question->id)) { notify("Error while adding stamp to question id = $question->id"); } } } } if ($oldversion < 2003082700) { table_column("quiz_categories", "", "stamp", "varchar", "255", "", "", "not null"); if ($categories = get_records("quiz_categories")) { foreach ($categories as $category) { $stamp = make_unique_id_code(); if (!set_field("quiz_categories", "stamp", $stamp, "id", $category->id)) { notify("Error while adding stamp to category id = $category->id"); } } } } if ($oldversion < 2003111100) { $duplicates = get_records_sql("SELECT stamp as id,count(*) as cuenta FROM {$CFG->prefix}quiz_questions GROUP BY stamp HAVING count(*)>1"); if ($duplicates) { notify("You have some quiz questions with duplicate stamps IDs. Cleaning these up."); foreach ($duplicates as $duplicate) { $questions = get_records("quiz_questions","stamp",$duplicate->id); $add = 1; foreach ($questions as $question) { echo "Changing question id $question->id stamp to ".$duplicate->id.$add."<br />"; set_field("quiz_questions","stamp",$duplicate->id.$add,"id",$question->id); $add++; } } } else { notify("Checked your quiz questions for stamp duplication errors, but no problems were found.", "green"); } } if ($oldversion < 2004021300) { table_column("quiz_questions", "", "questiontextformat", "integer", "2", "", "0", "not null", "questiontext"); } if ($oldversion < 2004021900) { modify_database("","INSERT INTO prefix_log_display VALUES ('quiz', 'add', 'quiz', 'name');"); modify_database("","INSERT INTO prefix_log_display VALUES ('quiz', 'update', 'quiz', 'name');"); } if ($oldversion < 2004051700) { include_once("$CFG->dirroot/mod/quiz/lib.php"); quiz_refresh_events(); } if ($oldversion < 2004060200) { execute_sql(" ALTER TABLE {$CFG->prefix}quiz ADD timelimit INT(2) UNSIGNED DEFAULT '0' NOT NULL "); } if ($oldversion < 2004070700) { table_column("quiz", "", "password", "varchar", "255", "", "", "not null", ""); table_column("quiz", "", "subnet", "varchar", "255", "", "", "not null", ""); } if ($oldversion < 2004073001) { // Six new tables: // One table for handling units for numerical questions modify_database ("", " CREATE TABLE `prefix_quiz_numerical_units` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `multiplier` decimal(40,20) NOT NULL default '1.00000000000000000000', `unit` varchar(50) NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Optional unit options for numerical questions'; "); // Four tables for handling distribution and storage of // individual data for dataset dependent question types modify_database ("", " CREATE TABLE `prefix_quiz_attemptonlast_datasets` ( `id` int(10) unsigned NOT NULL auto_increment, `category` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', `datasetnumber` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `category` (`category`,`userid`) ) TYPE=MyISAM COMMENT='Dataset number for attemptonlast attempts per user'; "); modify_database ("", " CREATE TABLE `prefix_quiz_dataset_definitions` ( `id` int(10) unsigned NOT NULL auto_increment, `category` int(10) unsigned NOT NULL default '0', `name` varchar(255) NOT NULL default '', `type` int(10) NOT NULL default '0', `options` varchar(255) NOT NULL default '', `itemcount` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Organises and stores properties for dataset items'; "); modify_database ("", " CREATE TABLE `prefix_quiz_dataset_items` ( `id` int(10) unsigned NOT NULL auto_increment, `definition` int(10) unsigned NOT NULL default '0', `number` int(10) unsigned NOT NULL default '0', `value` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `definition` (`definition`) ) TYPE=MyISAM COMMENT='Individual dataset items'; "); modify_database ("", " CREATE TABLE `prefix_quiz_question_datasets` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `datasetdefinition` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `question` (`question`,`datasetdefinition`) ) TYPE=MyISAM COMMENT='Many-many relation between questions and dataset definitions'; "); // One table for new question type calculated // - the first dataset dependent question type modify_database ("", " CREATE TABLE `prefix_quiz_calculated` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `answer` int(10) unsigned NOT NULL default '0', `tolerance` varchar(20) NOT NULL default '0.0', `tolerancetype` int(10) NOT NULL default '1', `correctanswerlength` int(10) NOT NULL default '2', PRIMARY KEY (`id`), KEY `question` (`question`) ) TYPE=MyISAM COMMENT='Options for questions of type calculated'; "); } if ($oldversion < 2004111400) { table_column("quiz_responses", "answer", "answer", "text", "", "", "", "not null"); } if ($oldversion < 2004111700) { execute_sql("ALTER TABLE {$CFG->prefix}quiz DROP INDEX course;",false); execute_sql("ALTER TABLE {$CFG->prefix}quiz_calculated DROP INDEX answer;",false); execute_sql("ALTER TABLE {$CFG->prefix}quiz_categories DROP INDEX course;",false); execute_sql("ALTER TABLE {$CFG->prefix}quiz_dataset_definitions DROP INDEX category;",false); execute_sql("ALTER TABLE {$CFG->prefix}quiz_numerical DROP INDEX question;",false); execute_sql("ALTER TABLE {$CFG->prefix}quiz_numerical_units DROP INDEX question;",false); execute_sql("ALTER TABLE {$CFG->prefix}quiz_questions DROP INDEX category;",false); modify_database('','ALTER TABLE prefix_quiz ADD INDEX course (course);'); modify_database('','ALTER TABLE prefix_quiz_calculated ADD INDEX answer (answer);'); modify_database('','ALTER TABLE prefix_quiz_categories ADD INDEX course (course);'); modify_database('','ALTER TABLE prefix_quiz_dataset_definitions ADD INDEX category (category);'); modify_database('','ALTER TABLE prefix_quiz_numerical ADD INDEX question (question);'); modify_database('','ALTER TABLE prefix_quiz_numerical_units ADD INDEX question (question);'); modify_database('','ALTER TABLE prefix_quiz_questions ADD INDEX category (category);'); } if ($oldversion < 2004120501) { table_column("quiz_calculated", "", "correctanswerformat", "integer", "10", "", "2", "not null", "correctanswerlength"); } if ($oldversion < 2004121400) { // New field to determine popup window behaviour table_column("quiz", "", "popup", "integer", "4", "", "0", "not null", "subnet"); } if ($oldversion < 2005010201) { table_column('quiz_categories', '', 'parent'); table_column('quiz_categories', '', 'sortorder', 'integer', '10', '', '999'); } if ($oldversion < 2005010300) { table_column("quiz", "", "questionsperpage", "integer", "10", "", "0", "not null", "review"); } if ($oldversion < 2005012700) { table_column('quiz_grades', 'grade', 'grade', 'real', 2, ''); } if ($oldversion < 2005021400) { table_column("quiz", "", "decimalpoints", "integer", "4", "", "2", "not null", "grademethod"); } if($oldversion < 2005022800) { table_column('quiz_questions', '', 'hidden', 'integer', '1', 'unsigned', '0', 'not null', 'version'); table_column('quiz_responses', '', 'originalquestion', 'integer', '10', 'unsigned', '0', 'not null', 'question'); modify_database ('', "CREATE TABLE `prefix_quiz_question_version` ( `id` int(10) unsigned NOT NULL auto_increment, `quiz` int(10) unsigned NOT NULL default '0', `oldquestion` int(10) unsigned NOT NULL default '0', `newquestion` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', `timestamp` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='The mapping between old and new versions of a question';"); } if ($oldversion < 2005032000) { execute_sql(" INSERT INTO {$CFG->prefix}log_display VALUES ('quiz', 'editquestions', 'quiz', 'name') "); } if ($oldversion < 2005032300) { modify_database ('', 'ALTER TABLE prefix_quiz_question_version RENAME prefix_quiz_question_versions;'); } if ($oldversion < 2005041200) { // replace wiki-like with markdown include_once( "$CFG->dirroot/lib/wiki_to_markdown.php" ); $wtm = new WikiToMarkdown(); $sql = "select course from {$CFG->prefix}quiz_categories c, {$CFG->prefix}quiz_questions q "; $sql .= "where c.id = q.category "; $sql .= "and q.id = "; $wtm->update( 'quiz_questions', 'questiontext', 'questiontextformat', $sql ); } if ($oldversion < 2005041304) { // make random questions hidden modify_database('', "UPDATE prefix_quiz_questions SET hidden = '1' WHERE qtype ='".RANDOM."';"); } if ($oldversion < 2005042002) { table_column('quiz_answers', 'answer', 'answer', 'text', '', '', '', 'not null', ''); } if ($oldversion < 2005042400) { // Changes to quiz table // The bits of the optionflags field will hold various option flags table_column('quiz', '', 'optionflags', 'integer', '10', 'unsigned', '0', 'not null', 'timeclose'); // The penalty scheme table_column('quiz', '', 'penaltyscheme', 'integer', '4', 'unsigned', '0', 'not null', 'optionflags'); // The review options are now all stored in the bits of the review field table_column('quiz', 'review', 'review', 'integer', 10, 'unsigned', 0, 'not null', ''); /// Changes to quiz_attempts table // The preview flag marks teacher previews table_column('quiz_attempts', '', 'preview', 'tinyint', '2', 'unsigned', '0', 'not null', 'timemodified'); // The layout is the list of questions with inserted page breaks. table_column('quiz_attempts', '', 'layout', 'text', '', '', '', 'not null', 'timemodified'); // For old quiz attempts we will set this to the repaginated question list from $quiz->questions /// The following updates of field values require a loop through all quizzes // This is because earlier versions of mysql don't allow joins in UPDATE if ($quizzes = get_records('quiz')) { // turn reporting off temporarily to avoid one line output per set_field $olddebug = $db->debug; $db->debug = false; echo 'Now updating '.count($quizzes).' quizzes'; foreach ($quizzes as $quiz) { // repaginate if ($quiz->questionsperpage) { $quiz->questions = quiz_repaginate($quiz->questions, $quiz->questionsperpage); set_field('quiz', 'questions', $quiz->questions, 'id', $quiz->id); } set_field('quiz_attempts', 'layout', $quiz->questions, 'quiz', $quiz->id); // set preview flag if ($teachers = get_course_teachers($quiz->course)) { $teacherids = implode(',', array_keys($teachers)); execute_sql("UPDATE {$CFG->prefix}quiz_attempts SET preview = 1 WHERE userid IN ($teacherids)"); } // set review flags in quiz table $review = (QUIZ_REVIEW_IMMEDIATELY & (QUIZ_REVIEW_RESPONSES + QUIZ_REVIEW_SCORES)); if ($quiz->feedback) { $review += (QUIZ_REVIEW_IMMEDIATELY & QUIZ_REVIEW_FEEDBACK); } if ($quiz->correctanswers) { $review += (QUIZ_REVIEW_IMMEDIATELY & QUIZ_REVIEW_ANSWERS); } if ($quiz->review & 1) { $review += QUIZ_REVIEW_CLOSED; } if ($quiz->review & 2) { $review += QUIZ_REVIEW_OPEN; } set_field('quiz', 'review', $review, 'id', $quiz->id); } $db->debug = $olddebug; } // We can now drop the fields whose data has been moved to the review field execute_sql(" ALTER TABLE `{$CFG->prefix}quiz` DROP feedback"); execute_sql(" ALTER TABLE `{$CFG->prefix}quiz` DROP correctanswers"); /// Renaming tables // rename the quiz_question_grades table to quiz_question_instances modify_database ('', 'ALTER TABLE prefix_quiz_question_grades RENAME prefix_quiz_question_instances;'); // rename the quiz_responses table quiz_states modify_database ('', 'ALTER TABLE prefix_quiz_responses RENAME prefix_quiz_states;'); /// add columns to quiz_states table // The sequence number of the state. table_column('quiz_states', '', 'seq_number', 'integer', '6', 'unsigned', '0', 'not null', 'originalquestion'); // For existing states we leave this at 0 because in the old quiz code there was only one response allowed // The time the state was created. table_column('quiz_states', '', 'timestamp', 'integer', '10', 'unsigned', '0', 'not null', 'answer'); // For existing states we will below set this to the timemodified field of the attempt // The type of event that led to the creation of the state table_column('quiz_states', '', 'event', 'integer', '4', 'unsigned', '0', 'not null', 'timestamp'); // The raw grade table_column('quiz_states', '', 'raw_grade', 'varchar', '10', '', '', 'not null', 'grade'); // For existing states (no penalties) this is equal to the grade execute_sql("UPDATE {$CFG->prefix}quiz_states SET raw_grade = grade"); // The penalty that the response attracted table_column('quiz_states', '', 'penalty', 'varchar', '10', '', '0.0', 'not null', 'raw_grade'); // For existing states this can stay at 0 because penalties did not exist previously. /// New table for pointers to newest and newest graded states modify_database('', "CREATE TABLE `prefix_quiz_newest_states` ( `id` int(10) unsigned NOT NULL auto_increment, `attemptid` int(10) unsigned NOT NULL default '0', `questionid` int(10) unsigned NOT NULL default '0', `new` int(10) unsigned NOT NULL default '0', `newgraded` int(10) unsigned NOT NULL default '0', `sumpenalty` varchar(10) NOT NULL default '0.0', PRIMARY KEY (`id`), UNIQUE KEY `attemptid` (`attemptid`,`questionid`) ) TYPE=MyISAM COMMENT='Gives ids of the newest open and newest graded states';"); /// Now upgrade some fields in states and newest_states tables where necessary // to save time on large sites only do this for attempts that have not yet been finished. if ($attempts = get_records_select('quiz_attempts', 'timefinish = 0')) { echo 'Update the states for the '.count($attempts).' open attempts'; // turn reporting off temporarily to avoid one line output per set_field $olddebug = $db->debug; $db->debug = false; foreach ($attempts as $attempt) { quiz_upgrade_states($attempt); } $db->debug = $olddebug; } /// Entries for the log_display table modify_database('', " INSERT INTO prefix_log_display VALUES ('quiz', 'preview', 'quiz', 'name');"); modify_database('', " INSERT INTO prefix_log_display VALUES ('quiz', 'start attempt', 'quiz', 'name');"); modify_database('', " INSERT INTO prefix_log_display VALUES ('quiz', 'close attempt', 'quiz', 'name');"); /// update the default settings in $CFG $review = (QUIZ_REVIEW_IMMEDIATELY & (QUIZ_REVIEW_RESPONSES + QUIZ_REVIEW_SCORES)); if (!empty($CFG->quiz_feedback)) { $review += (QUIZ_REVIEW_IMMEDIATELY & QUIZ_REVIEW_FEEDBACK); } if (!empty($CFG->quiz_correctanswers)) { $review += (QUIZ_REVIEW_IMMEDIATELY & QUIZ_REVIEW_ANSWERS); } if (isset($CFG->quiz_review) and ($CFG->quiz_review & 1)) { $review += QUIZ_REVIEW_CLOSED; } if (isset($CFG->quiz_review) and ($CFG->quiz_review & 2)) { $review += QUIZ_REVIEW_OPEN; } set_config('quiz_review', $review); /// Use tolerance instead of min and max in numerical question type table_column('quiz_numerical', '', 'tolerance', 'varchar', '255', '', '0.0', 'not null', 'answer'); execute_sql("UPDATE {$CFG->prefix}quiz_numerical SET tolerance = (max-min)/2"); modify_database('', 'ALTER TABLE `prefix_quiz_numerical` DROP `min`'); // Replaced by tolerance modify_database('', 'ALTER TABLE `prefix_quiz_numerical` DROP `max`'); // Replaced by tolerance /// Tables for Remote Questions modify_database ('', "CREATE TABLE `prefix_quiz_rqp` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `type` int(10) unsigned NOT NULL default '0', `source` longblob NOT NULL default '', `format` varchar(255) NOT NULL default '', `flags` tinyint(3) unsigned NOT NULL default '0', `maxscore` int(10) unsigned NOT NULL default '1', PRIMARY KEY (`id`), KEY `question` (`question`) ) TYPE=MyISAM COMMENT='Options for RQP questions';"); modify_database ('', "CREATE TABLE `prefix_quiz_rqp_type` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `rendering_server` varchar(255) NOT NULL default '', `cloning_server` varchar(255) NOT NULL default '', `flags` tinyint(3) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) TYPE=MyISAM COMMENT='RQP question types and the servers to be used to process them';"); modify_database ('', "CREATE TABLE `prefix_quiz_rqp_states` ( `id` int(10) unsigned NOT NULL auto_increment, `stateid` int(10) unsigned NOT NULL default '0', `responses` text NOT NULL default '', `persistent_data` text NOT NULL default '', `template_vars` text NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='RQP question type specific state information';"); } if ($oldversion < 2005050300) { // length of question determines question numbering. Currently all questions require one // question number except for DESCRIPTION questions. table_column('quiz_questions', '', 'length', 'integer', '10', 'unsigned', '1', 'not null', 'qtype'); execute_sql("UPDATE {$CFG->prefix}quiz_questions SET length = 0 WHERE qtype = ".DESCRIPTION); } if ($oldversion < 2005050408) { table_column('quiz_questions', '', 'penalty', 'float', '', '', '0.1', 'not null', 'defaultgrade'); table_column('quiz_newest_states', 'new', 'newest', 'integer', '10', 'unsigned', '0', 'not null'); } if ($oldversion < 2005051400) { modify_database('', 'ALTER TABLE prefix_quiz_rqp_type RENAME prefix_quiz_rqp_types;'); modify_database('', "CREATE TABLE `prefix_quiz_rqp_servers` ( id int(10) unsigned NOT NULL auto_increment, typeid int(10) unsigned NOT NULL default '0', url varchar(255) NOT NULL default '', can_render tinyint(2) unsigned NOT NULL default '0', can_author tinyint(2) unsigned NOT NULL default '0', PRIMARY KEY (id) ) TYPE=MyISAM COMMENT='Information about RQP servers';"); if ($types = get_records('quiz_rqp_types')) { foreach($types as $type) { $server->typeid = $type->id; $server->url = $type->rendering_server; $server->can_render = 1; insert_record('quiz_rqp_servers', $server); } } modify_database('', 'ALTER TABLE prefix_quiz_rqp_types DROP rendering_server'); modify_database('', 'ALTER TABLE prefix_quiz_rqp_types DROP cloning_server'); modify_database('', 'ALTER TABLE prefix_quiz_rqp_types DROP flags'); } if ($oldversion < 2005051401) { // Some earlier changes are undone here, so we need another condition if ($oldversion >= 2005042900) { // Restore the answer field table_column('quiz_numerical', '', 'answer', 'integer', '10', 'unsigned', '0', 'not null', 'answers'); $singleanswer = array(); if ($numericals = get_records('quiz_numerical')) { $numericals = array_values($numericals); $n = count($numericals); for ($i = 0; $i < $n; $i++) { $numerical =& $numericals[$i]; if (strpos($numerical->answers, ',')) { // comma separated list? // Back this up to delete the record after the new ones are created $id = $numerical->id; unset($numerical->id); // We need to create a record for each answer id $answers = explode(',', $numerical->answers); foreach ($answers as $answer) { $numerical->answer = $answer; insert_record('quiz_numerical', $numerical); } // ... and get rid of the old record delete_records('quiz_numerical', 'id', $id); } else { $singleanswer[] = $numerical->id; } } } // Do all of these at once if (!empty($singleanswer)) { $singleanswer = implode(',', $singleanswer); modify_database('', "UPDATE prefix_quiz_numerical SET answer = answers WHERE id IN ($singleanswer);"); } // All answer fields are set, so we can delete the answers field modify_database('', 'ALTER TABLE `prefix_quiz_numerical` DROP `answers`'); // If the earlier changes weren't made we can safely do only the // bits here. } else { // Comma separated questionids will be stored as sequence table_column('quiz_multianswers', '', 'sequence', 'varchar', '255', '', '', 'not null', 'question'); // Change the type of positionkey to int, so that the sorting works! table_column('quiz_multianswers', 'positionkey', 'positionkey', 'integer', '10', 'unsigned', '0', 'not null', ''); table_column('quiz_questions', '', 'parent', 'integer', '10', 'unsigned', '0', 'not null', 'category'); modify_database('', "UPDATE prefix_quiz_questions SET parent = id WHERE qtype ='".RANDOM."';"); // Each multianswer record is converted to a question object and then // inserted as a new question into the quiz_questions table. // After that the question fields in the quiz_answers table and the // qtype specific tables are updated to point to the new question id. // Note: The quiz_numerical table is different as it stores one record // per defined answer (to allow different tolerance values for // different possible answers. (Currently multiple answers are // not supported by the numerical editing interface, but // all processing code does support that possibility. if ($multianswers = get_records_sql("SELECT m.id, q.category, " . "q.id AS parent, " . // question id (of multianswer question) as parent "q.name, q.questiontextformat, " . "m.norm AS defaultgrade, " . // norm is snow stored as defaultgrade "m.answertype AS qtype, " . // just rename this "q.version, q.hidden, m.answers, " . "m.positionkey " . "FROM {$CFG->prefix}quiz_questions q, " . " {$CFG->prefix}quiz_multianswers m " . "WHERE q.qtype = '".MULTIANSWER."' " . "AND q.id = m.question " . "ORDER BY q.id ASC, m.positionkey ASC")) { // ordered by positionkey $multianswers = array_values($multianswers); $n = count($multianswers); $parent = $multianswers[0]->parent; $sequence = array(); $positions = array(); // Turn reporting off temporarily to avoid one line output per set_field global $db; $olddebug = $db->debug; $db->debug = false; echo 'Now updating '.$n.' cloze questions.'; for ($i = 0; $i < $n; $i++) { // Backup these two values before unsetting the object fields $answers = $multianswers[$i]->answers; unset($multianswers[$i]->answers); $pos = $multianswers[$i]->positionkey; unset($multianswers[$i]->positionkey); // Needed for substituting multianswer ids with position keys in the $state->answer field $positions[$multianswers[$i]->id] = $pos; // Create questions for all the multianswer victims unset($multianswers[$i]->id); $multianswers[$i]->length = 0; $multianswers[$i]->questiontext = ''; $multianswers[$i]->stamp = make_unique_id_code(); // $multianswers[$i]->parent is set in the query // $multianswers[$i]->defaultgrade is set in the query // $multianswers[$i]->qtype is set in the query $id = insert_record('quiz_questions', $multianswers[$i]); $sequence[$pos] = $id; // Update the quiz_answers table to point to these new questions execute_sql("UPDATE {$CFG->prefix}quiz_answers SET question = '$id' WHERE id IN ($answers)", false); // Update the questiontype tables to point to these new questions if (SHORTANSWER == $multianswers[$i]->qtype) { execute_sql("UPDATE {$CFG->prefix}quiz_shortanswer SET question = '$id' WHERE answers = '$answers'", false); } else if (MULTICHOICE == $multianswers[$i]->qtype) { execute_sql("UPDATE {$CFG->prefix}quiz_multichoice SET question = '$id' WHERE answers = '$answers'", false); } else if (NUMERICAL == $multianswers[$i]->qtype) { execute_sql("UPDATE {$CFG->prefix}quiz_numerical SET question = '$id' WHERE answer IN ($answers)", false); } // Whenever we're through with the subquestions of one multianswer // question we delete the old records in the multianswers table, // store a new record with the sequence in the multianswers table // and point $parent to the next multianswer question. if (!isset($multianswers[$i+1]) || $parent != $multianswers[$i+1]->parent) { // Substituting multianswer ids with position keys in the $state->answer field if ($states = get_records('quiz_states', 'question', $parent)) { foreach ($states as $state) { $reg = array(); preg_match_all('/(?:^|,)([0-9]+)-([^,]*)/', $state->answer, $reg); $state->answer = ''; $m = count($reg[1]); for ($j = 0; $j < $m; $j++) { if (isset($positions[$reg[1][$j]])) { $state->answer .= $positions[$reg[1][$j]] . '-' . $reg[2][$j] . ','; } else { notify("Undefined multianswer id ({$reg[1][$j]}) used in state #{$state->id}!"); $state->answer .= $j+1 . '-' . $reg[2][$j] . ','; } } $state->answer = rtrim($state->answer, ','); // strip trailing comma update_record('quiz_states', $state); } } delete_records('quiz_multianswers', 'question', $parent); $multi = new stdClass; $multi->question = $parent; $multi->sequence = implode(',', $sequence); insert_record('quiz_multianswers', $multi); if (isset($multianswers[$i+1])) { $parent = $multianswers[$i+1]->parent; $sequence = array(); $positions = array(); } } } $db->debug = $olddebug; } // Remove redundant fields from quiz_multianswers modify_database('', 'ALTER TABLE `prefix_quiz_multianswers` DROP `answers`'); modify_database('', 'ALTER TABLE `prefix_quiz_multianswers` DROP `positionkey`'); modify_database('', 'ALTER TABLE `prefix_quiz_multianswers` DROP `answertype`'); modify_database('', 'ALTER TABLE `prefix_quiz_multianswers` DROP `norm`'); } } if ($oldversion < 2005052004) { // We need to remove some duplicate entries that may be present in some databases // due to a faulty restore script // Remove duplicate entries from quiz_numerical if ($dups = get_records_sql(" SELECT question, answer, count(*) as num FROM {$CFG->prefix}quiz_numerical GROUP BY question, answer HAVING count(*) > 1" )) { foreach ($dups as $dup) { $ids = get_records_sql(" SELECT id, id FROM {$CFG->prefix}quiz_numerical WHERE question = '$dup->question' AND answer = '$dup->answer'" ); $skip = true; foreach ($ids as $id) { if ($skip) { $skip = false; } else { delete_records('quiz_numerical','id', $id->id); } } } } // Remove duplicate entries from quiz_shortanswer if ($dups = get_records_sql(" SELECT question, answers, count(*) as num FROM {$CFG->prefix}quiz_shortanswer GROUP BY question, answers HAVING count(*) > 1" )) { foreach ($dups as $dup) { $ids = get_records_sql(" SELECT id, id FROM {$CFG->prefix}quiz_shortanswer WHERE question = '$dup->question' AND answers = '$dup->answers'" ); $skip = true; foreach ($ids as $id) { if ($skip) { $skip = false; } else { delete_records('quiz_shortanswer','id', $id->id); } } } } // Remove duplicate entries from quiz_multichoice if ($dups = get_records_sql(" SELECT question, answers, count(*) as num FROM {$CFG->prefix}quiz_multichoice GROUP BY question, answers HAVING count(*) > 1" )) { foreach ($dups as $dup) { $ids = get_records_sql(" SELECT id, id FROM {$CFG->prefix}quiz_multichoice WHERE question = '$dup->question' AND answers = '$dup->answers'" ); $skip = true; foreach ($ids as $id) { if ($skip) { $skip = false; } else { delete_records('quiz_multichoice','id', $id->id); } } } } } if ($oldversion < 2005060300) { //Search all the orphan categories (those whose course doesn't exist) //and process them, deleting or moving them to site course - Bug 2459 //Set debug to false $olddebug = $db->debug; $db->debug = false; //Iterate over all the quiz_categories records to get their course id if ($courses = get_records_sql ("SELECT DISTINCT course as id, course FROM {$CFG->prefix}quiz_categories")) { //Iterate over courses foreach ($courses as $course) { //If the course doesn't exist, orphan category found! //Process it with quiz_delete_course(). It will do all the hard work. if (!record_exists('course', 'id', $course->id)) { require_once("$CFG->dirroot/mod/quiz/lib.php"); quiz_delete_course($course); } } } //Reset rebug to its original state $db->debug = $olddebug; } if ($oldversion < 2005062600) { modify_database ('', " CREATE TABLE `prefix_quiz_essay` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `answer` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `question` (`question`) ) TYPE=MyISAM COMMENT='Options for essay questions'"); modify_database ('', " CREATE TABLE `prefix_quiz_essay_states` ( `id` int(10) unsigned NOT NULL auto_increment, `stateid` int(10) unsigned NOT NULL default '0', `graded` tinyint(4) unsigned NOT NULL default '0', `fraction` varchar(10) NOT NULL default '0.0', `response` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='essay question type specific state information'"); } if ($oldversion < 2005070202) { // add new unique id to prepare the way for lesson module to have its own attempts table table_column('quiz_attempts', '', 'uniqueid', 'integer', '10', 'unsigned', '0', 'not null', 'id'); // initially we can use the id as the unique id because no other modules use attempts yet. execute_sql("UPDATE {$CFG->prefix}quiz_attempts SET uniqueid = id", false); // we set $CFG->attemptuniqueid to the next available id $record = get_record_sql("SELECT max(id)+1 AS nextid FROM {$CFG->prefix}quiz_attempts"); set_config('attemptuniqueid', empty($record->nextid) ? 1 : $record->nextid); } if ($oldversion < 2005081100) { execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_types ADD `studentDocs` VARCHAR( 255 ) NOT NULL'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_types ADD `teacherDocs` VARCHAR( 255 ) NOT NULL'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_types ADD `adminDocs` VARCHAR( 255 ) NOT NULL'); } if ($oldversion < 2005081106) { execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_servers ADD `properties` TINYINT( 8 ) NOT NULL'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_servers ADD `version` FLOAT( 4 ) NOT NULL'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_servers ADD `details` VARCHAR( 255 ) NOT NULL'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_servers DROP `can_render`'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp_servers DROP `can_author`'); execute_sql('CREATE TABLE '.$CFG->prefix.'quiz_rqp_mimetypes (id INT( 10 ) UNSIGNED PRIMARY KEY AUTO_INCREMENT, serverid INT( 10 ) UNSIGNED NOT NULL, mimetype VARCHAR( 50 ) NOT NULL)'); } if ($oldversion < 2005090303) { execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp DROP `flags`'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp DROP `format`'); execute_sql('ALTER TABLE '.$CFG->prefix.'quiz_rqp DROP `maxscore`'); execute_sql('ALTER TABLE '.$CFG->prefix."quiz_rqp ADD `template` SMALLINT( 1 ) DEFAULT '0' NOT NULL"); } if ($oldversion < 2005091200) { //Admin Options string execute_sql('ALTER TABLE '.$CFG->prefix."quiz_rqp_types ADD `options` longblob NOT NULL default ''"); //Course options - set by teacher execute_sql('CREATE TABLE '.$CFG->prefix."quiz_rqp_course_options (id INT( 10 ) UNSIGNED PRIMARY KEY AUTO_INCREMENT, courseid INT( 10 ) UNSIGNED NOT NULL, typeid INT( 10 ) UNSIGNED NOT NULL, options longblob NOT NULL default '')"); //User options - set by specific user execute_sql('CREATE TABLE '.$CFG->prefix."quiz_rqp_user_options (id INT( 10 ) UNSIGNED PRIMARY KEY AUTO_INCREMENT, userid INT( 10 ) UNSIGNED NOT NULL, typeid INT( 10 ) UNSIGNED NOT NULL, options longblob NOT NULL default '')"); //Quiz options execute_sql('ALTER TABLE '.$CFG->prefix."quiz_rqp ADD `options` longblob NOT NULL default ''"); } return true; } ?> --- NEW FILE: postgres7.php --- <?php // $Id: postgres7.php,v 1.1 2005/09/12 09:46:59 pkiddie Exp $ function quiz_upgrade($oldversion) { // This function does anything necessary to upgrade // older versions to match current functionality global $CFG; include_once("$CFG->dirroot/mod/quiz/locallib.php"); if ($oldversion < 2003010100) { execute_sql(" ALTER TABLE {$CFG->prefix}quiz ADD review integer DEFAULT '0' NOT NULL AFTER `grademethod` "); } if ($oldversion < 2003010301) { table_column("quiz_truefalse", "true", "trueanswer", "INTEGER", "10", "UNSIGNED", "0", "NOT NULL", ""); table_column("quiz_truefalse", "false", "falseanswer", "INTEGER", "10", "UNSIGNED", "0", "NOT NULL", ""); table_column("quiz_questions", "type", "qtype", "INTEGER", "10", "UNSIGNED", "0", "NOT NULL", ""); } [...975 lines suppressed...] //Course options - set by teacher modify_database('',"CREATE TABLE prefix_quiz_rqp_course_options (id SERIAL PRIMARY KEY, courseid integer NOT NULL default '0', typeid integer NOT NULL default '0', options TEXT NOT NULL default '');"); //User options - set by specific user modify_database('',"CREATE TABLE prefix_quiz_rqp_user_options (id SERIAL PRIMARY KEY, userid integer NOT NULL default '0', typeid integer NOT NULL default '0', options TEXT NOT NULL default '');"); //Quiz options modify_database('',"ALTER TABLE prefix_quiz_rqp ADD options TEXT NOT NULL default ''"); } return true; } ?> --- NEW FILE: mysql.sql --- -- phpMyAdmin SQL Dump -- version 2.6.0-pl1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jun 05, 2005 at 04:32 PM -- Server version: 4.0.15 -- PHP Version: 4.3.3 -- -- Database: `moodle15` -- -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz` -- CREATE TABLE prefix_quiz ( id int(10) unsigned NOT NULL auto_increment, course int(10) unsigned NOT NULL default '0', name varchar(255) NOT NULL default '', intro text NOT NULL, timeopen int(10) unsigned NOT NULL default '0', timeclose int(10) unsigned NOT NULL default '0', optionflags int(10) unsigned NOT NULL default '0', penaltyscheme int(4) unsigned NOT NULL default '0', attempts smallint(6) NOT NULL default '0', attemptonlast tinyint(4) NOT NULL default '0', grademethod tinyint(4) NOT NULL default '1', decimalpoints int(4) NOT NULL default '2', review int(10) unsigned NOT NULL default '0', questionsperpage int(10) NOT NULL default '0', shufflequestions tinyint(4) NOT NULL default '0', shuffleanswers tinyint(4) NOT NULL default '0', questions text NOT NULL, sumgrades int(10) NOT NULL default '0', grade int(10) NOT NULL default '0', timecreated int(10) unsigned NOT NULL default '0', timemodified int(10) unsigned NOT NULL default '0', timelimit int(2) unsigned NOT NULL default '0', password varchar(255) NOT NULL default '', subnet varchar(255) NOT NULL default '', popup tinyint(4) NOT NULL default '0', PRIMARY KEY (id), KEY course (course) ) TYPE=MyISAM COMMENT='Main information about each quiz'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_answers` -- CREATE TABLE prefix_quiz_answers ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', answer text NOT NULL, fraction varchar(10) NOT NULL default '0.0', feedback text NOT NULL, PRIMARY KEY (id), KEY question (question) ) TYPE=MyISAM COMMENT='Answers, with a fractional grade (0-1) and feedback'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_attemptonlast_datasets` -- CREATE TABLE prefix_quiz_attemptonlast_datasets ( id int(10) unsigned NOT NULL auto_increment, category int(10) unsigned NOT NULL default '0', userid int(10) unsigned NOT NULL default '0', datasetnumber int(10) unsigned NOT NULL default '0', PRIMARY KEY (id), UNIQUE KEY category (category,userid) ) TYPE=MyISAM COMMENT='Dataset number for attemptonlast attempts per user'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_attempts` -- CREATE TABLE prefix_quiz_attempts ( id int(10) unsigned NOT NULL auto_increment, quiz int(10) unsigned NOT NULL default '0', userid int(10) unsigned NOT NULL default '0', attempt smallint(6) NOT NULL default '0', sumgrades varchar(10) NOT NULL default '0.0', timestart int(10) unsigned NOT NULL default '0', timefinish int(10) unsigned NOT NULL default '0', timemodified int(10) unsigned NOT NULL default '0', layout text NOT NULL, preview tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (id), KEY quiz (quiz), KEY userid (userid) ) TYPE=MyISAM COMMENT='Stores various attempts on a quiz'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_calculated` -- CREATE TABLE prefix_quiz_calculated ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', answer int(10) unsigned NOT NULL default '0', tolerance varchar(20) NOT NULL default '0.0', tolerancetype int(10) NOT NULL default '1', correctanswerlength int(10) NOT NULL default '2', correctanswerformat int(10) NOT NULL default '2', PRIMARY KEY (id), KEY question (question), KEY answer (answer) ) TYPE=MyISAM COMMENT='Options for questions of type calculated'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_categories` -- CREATE TABLE prefix_quiz_categories ( id int(10) unsigned NOT NULL auto_increment, course int(10) unsigned NOT NULL default '0', name varchar(255) NOT NULL default '', info text NOT NULL, publish tinyint(4) NOT NULL default '0', stamp varchar(255) NOT NULL default '', parent int(10) unsigned NOT NULL default '0', sortorder int(10) unsigned NOT NULL default '999', PRIMARY KEY (id), KEY course (course) ) TYPE=MyISAM COMMENT='Categories are for grouping questions'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_dataset_definitions` -- CREATE TABLE prefix_quiz_dataset_definitions ( id int(10) unsigned NOT NULL auto_increment, category int(10) unsigned NOT NULL default '0', name varchar(255) NOT NULL default '', type int(10) NOT NULL default '0', options varchar(255) NOT NULL default '', itemcount int(10) unsigned NOT NULL default '0', PRIMARY KEY (id), KEY category (category) ) TYPE=MyISAM COMMENT='Organises and stores properties for dataset items'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_dataset_items` -- CREATE TABLE prefix_quiz_dataset_items ( id int(10) unsigned NOT NULL auto_increment, definition int(10) unsigned NOT NULL default '0', number int(10) unsigned NOT NULL default '0', value varchar(255) NOT NULL default '', PRIMARY KEY (id), KEY definition (definition) ) TYPE=MyISAM COMMENT='Individual dataset items'; -- -------------------------------------------------------- -- -- Table structure for table `mdl_quiz_essay` -- CREATE TABLE `prefix_quiz_essay` ( `id` int(10) unsigned NOT NULL auto_increment, `question` int(10) unsigned NOT NULL default '0', `answer` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), KEY `question` (`question`) ) TYPE=MyISAM COMMENT='Options for essay questions'; -- -------------------------------------------------------- -- -- Table structure for table `mdl_quiz_essay_states` -- CREATE TABLE `prefix_quiz_essay_states` ( `id` int(10) unsigned NOT NULL auto_increment, `stateid` int(10) unsigned NOT NULL default '0', `graded` tinyint(4) unsigned NOT NULL default '0', `fraction` varchar(10) NOT NULL default '0.0', `response` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='essay question type specific state information'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_grades` -- CREATE TABLE prefix_quiz_grades ( id int(10) unsigned NOT NULL auto_increment, quiz int(10) unsigned NOT NULL default '0', userid int(10) unsigned NOT NULL default '0', grade double NOT NULL default '0', timemodified int(10) unsigned NOT NULL default '0', PRIMARY KEY (id), KEY quiz (quiz), KEY userid (userid) ) TYPE=MyISAM COMMENT='Final quiz grade (may be best of several attempts)'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_match` -- CREATE TABLE prefix_quiz_match ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', subquestions varchar(255) NOT NULL default '', PRIMARY KEY (id), KEY question (question) ) TYPE=MyISAM COMMENT='Defines fixed matching questions'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_match_sub` -- CREATE TABLE prefix_quiz_match_sub ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', questiontext text NOT NULL, answertext varchar(255) NOT NULL default '', PRIMARY KEY (id), KEY question (question) ) TYPE=MyISAM COMMENT='Defines the subquestions that make up a matching question'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_multianswers` -- CREATE TABLE prefix_quiz_multianswers ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', sequence varchar(255) NOT NULL default '', PRIMARY KEY (id), KEY question (question) ) TYPE=MyISAM COMMENT='Options for multianswer questions'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_multichoice` -- CREATE TABLE prefix_quiz_multichoice ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', layout tinyint(4) NOT NULL default '0', answers varchar(255) NOT NULL default '', single tinyint(4) NOT NULL default '0', PRIMARY KEY (id), KEY question (question) ) TYPE=MyISAM COMMENT='Options for multiple choice questions'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_newest_states` -- CREATE TABLE prefix_quiz_newest_states ( id int(10) unsigned NOT NULL auto_increment, attemptid int(10) unsigned NOT NULL default '0', questionid int(10) unsigned NOT NULL default '0', newest int(10) unsigned NOT NULL default '0', newgraded int(10) unsigned NOT NULL default '0', sumpenalty varchar(10) NOT NULL default '0.0', PRIMARY KEY (id), UNIQUE KEY attemptid (attemptid,questionid) ) TYPE=MyISAM COMMENT='Gives ids of the newest open and newest graded states'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_numerical` -- CREATE TABLE prefix_quiz_numerical ( id int(10) unsigned NOT NULL auto_increment, question int(10) unsigned NOT NULL default '0', answer int(10) unsigned NOT NULL default '0', tolerance varchar(255) NOT NULL default '0.0', PRIMARY KEY (id), KEY answer (answer), KEY question (question) ) TYPE=MyISAM COMMENT='Options for numerical questions'; -- -------------------------------------------------------- -- -- Table structure for table `prefix_quiz_numerical_units` -- ... [truncated message content] |