Skip to content

Commit

Permalink
MDL-27635 hub component: fixed default value for 'secret' field in 'r…
Browse files Browse the repository at this point in the history
…egistration_hubs' table
  • Loading branch information
Rossiani Wijaya committed Sep 12, 2011
1 parent 4f65f98 commit b086b19
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions lib/db/upgrade.php
Expand Up @@ -6051,11 +6051,12 @@ function xmldb_main_upgrade($oldversion) {
// Define field secret to be added to registration_hubs
$table = new xmldb_table('registration_hubs');
$field = new xmldb_field('secret', XMLDB_TYPE_CHAR, '255', null, null, null,
$CFG->siteidentifier, 'confirmed');
null, 'confirmed');

// Conditionally launch add field secret
// Conditionally launch add field secret and set its value
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
$DB->set_field('registration_hubs', 'secret', $CFG->siteidentifier);
}

// Main savepoint reached
Expand Down Expand Up @@ -6136,6 +6137,18 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2011033004.04);
}

if ($oldversion < 2011033004.08) {
// Changing the default of field secret on table registration_hubs to NULL
$table = new xmldb_table('registration_hubs');
$field = new xmldb_field('secret', XMLDB_TYPE_CHAR, '255', null, null, null, null, 'confirmed');

// Launch change of default for field secret
$dbman->change_field_default($table, $field);

// Main savepoint reached
upgrade_main_savepoint(true, 2011033004.08);
}


return true;
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Expand Up @@ -30,7 +30,7 @@
defined('MOODLE_INTERNAL') || die();


$version = 2011033004.07; // 20110330 = branching date YYYYMMDD - do not modify!
$version = 2011033004.08; // 20110330 = branching date YYYYMMDD - do not modify!
// RR = release version - do not change in weeklies
// .XX = incremental changes

Expand Down

0 comments on commit b086b19

Please sign in to comment.