global $CFG;
- if ($oldversion < 2003121000) {
- execute_sql(" ALTER TABLE `{$CFG->prefix}exercise_submissions` ADD `late` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0'");
- }
-
if ($oldversion < 2004062300) {
table_column("exercise", "", "gradinggrade", "INTEGER", "4", "UNSIGNED", "0", "NOT NULL", "grade");
table_column("exercise", "", "assessmentcomps", "INTEGER", "4", "UNSIGNED", "2", "NOT NULL", "usemaximum");
$result = true;
-/// And upgrade begins here. For each one, you'll need one
-/// block of code similar to the next one. Please, delete
-/// this comment lines once this file start handling proper
-/// upgrade code.
-
-/// if ($result && $oldversion < YYYYMMDD00) { //New version in version.php
-/// $result = result of "/lib/ddllib.php" function calls
-/// }
+ if ($result && $oldversion < 2007110500) {
+ $table = new XMLDBTable('exercise_submissions');
+ $field = new XMLDBField('late');
+ $field->setAttributes(XMLDB_TYPE_INTEGER, '3', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, 0, 'isexercise');
+ $result = $result && add_field($table, $field);
+ }
return $result;
}
// This fragment is called by /admin/index.php
////////////////////////////////////////////////////////////////////////////////
-$module->version = 2007020200;
+$module->version = 2007110500;
$module->requires = 2007101000; // Requires this Moodle version
$module->cron = 60;
$db->debug = true;
}
+ // Adding missing 'version' field to table scorm
+ if ($result && $oldversion < 2007110500) {
+ $table = new XMLDBTable('scorm');
+ $field = new XMLDBField('version');
+ $field->setAttributes(XMLDB_TYPE_CHAR, '9', null, XMLDB_NOTNULL, null, null, null, 'scorm_12', 'summary');
+
+ $result = $result && add_field($table, $field);
+ }
+
return $result;
}
// catch up now, so until 27th October please only increment in very tiny steps
// in HEAD, until we get past that date..
-$module->version = 2007081001; // The (date) version of this module
+$module->version = 2007110500; // The (date) version of this module
$module->requires = 2007101000; // The version of Moodle that is required
$module->cron = 300; // How often should cron check this module (seconds)?