Skip to content

Commit

Permalink
MDL-19350 upgrade blocks - adding missing savepoints to mod/quiz/reports
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Jun 3, 2009
1 parent 3e17976 commit b0ec60f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 10 deletions.
6 changes: 6 additions & 0 deletions mod/quiz/report/overview/db/upgrade.php
Expand Up @@ -29,6 +29,9 @@ function xmldb_quizreport_overview_upgrade($oldversion) {
if (!$dbman->table_exists($table)) {
$dbman->create_table($table);
}

/// overview savepoint reached
upgrade_plugin_savepoint($result, 2008062700, 'quizreport', 'overview');
}

if ($result && $oldversion < 2009030500) {
Expand All @@ -45,6 +48,9 @@ function xmldb_quizreport_overview_upgrade($oldversion) {

/// Launch change of precision for field newgrade
$dbman->change_field_precision($table, $field);

/// overview savepoint reached
upgrade_plugin_savepoint($result, 2009030500, 'quizreport', 'overview');
}

return $result;
Expand Down
46 changes: 36 additions & 10 deletions mod/quiz/report/statistics/db/upgrade.php
Expand Up @@ -3,7 +3,7 @@
function xmldb_quizreport_statistics_upgrade($oldversion) {

global $DB;

$dbman = $DB->get_manager();

$result = true;
Expand All @@ -13,7 +13,11 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
if ($result && $oldversion < 2008072401) {
//register cron to run every 5 hours.
$result = $result && $DB->set_field('quiz_report', 'cron', HOURSECS*5, array('name'=>'statistics'));

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008072401, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008072500) {

/// Define field s to be added to quiz_question_statistics
Expand All @@ -25,7 +29,10 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
$dbman->add_field($table, $field);
}

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008072500, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008072800) {

/// Define field maxgrade to be added to quiz_question_statistics
Expand All @@ -37,6 +44,8 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
$dbman->add_field($table, $field);
}

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008072800, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008072801) {
Expand All @@ -50,6 +59,8 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
$dbman->add_field($table, $field);
}

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008072801, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008081500) {
Expand All @@ -59,6 +70,9 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {

/// Launch change of type for field maxgrade
$dbman->change_field_type($table, $field);

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008081500, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008082600) {
Expand All @@ -83,8 +97,10 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
$dbman->create_table($table);
}


/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008082600, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008090500) {
//delete all cached results first
$result = $result && $DB->delete_records('quiz_statistics');
Expand All @@ -94,29 +110,33 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
/// Define field anssubqid to be dropped from quiz_question_response_stats
$table = new xmldb_table('quiz_question_response_stats');
$field = new xmldb_field('anssubqid');

/// Conditionally launch drop field subqid
if ($dbman->field_exists($table, $field)) {
$dbman->drop_field($table, $field);
}

/// Define field subqid to be added to quiz_question_response_stats
$field = new xmldb_field('subqid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, 'questionid');

/// Conditionally launch add field subqid
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
}

/// Define field aid to be added to quiz_question_response_stats
$field = new xmldb_field('aid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, 'subqid');

/// Conditionally launch add field aid
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
}
}

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008090500, 'quizreport', 'statistics');
}

if ($result && $oldversion < 2008111000) {
//delete all cached results first
$result = $result && $DB->delete_records('quiz_statistics');
Expand All @@ -127,18 +147,24 @@ function xmldb_quizreport_statistics_upgrade($oldversion) {
$table = new xmldb_table('quiz_question_statistics');
/// Define field subqid to be added to quiz_question_response_stats
$field = new xmldb_field('negcovar', XMLDB_TYPE_INTEGER, '2', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, '0', 'effectiveweight');

/// Conditionally launch add field subqid
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
}
}

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008111000, 'quizreport', 'statistics');
}


if ($result && $oldversion < 2008112100) {
$result = $result && $DB->set_field('quiz_report', 'capability', 'quizreport/statistics:view', array('name'=>'statistics'));
}

/// statistics savepoint reached
upgrade_plugin_savepoint($result, 2008112100, 'quizreport', 'statistics');
}

return $result;
}

0 comments on commit b0ec60f

Please sign in to comment.