Skip to content

Commit

Permalink
Merge pull request #565 from ncstate-delta/fix/registration-column-db…
Browse files Browse the repository at this point in the history
…-settings

db: revert registration upgrade; fix tables that upgraded
  • Loading branch information
jrchamp authored Jan 25, 2024
2 parents ae444a1 + e07be09 commit 0b678e2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ function xmldb_zoom_upgrade($oldversion) {
$table = new xmldb_table('zoom');

// Define and conditionally add field registration.
$field = new xmldb_field('registration', XMLDB_TYPE_INTEGER, '1', null, null, null, null, 'option_auto_recording');
$field = new xmldb_field('registration', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, '2', 'option_auto_recording');
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
}
Expand Down Expand Up @@ -933,5 +933,20 @@ function xmldb_zoom_upgrade($oldversion) {
upgrade_mod_savepoint(true, 2023111600, 'zoom');
}

if ($oldversion < 2024012500) {
// Version 5.1.0 incorrectly upgraded the zoom table's registration field. It should not be null and should default to 2.
$table = new xmldb_table('zoom');
$field = new xmldb_field('registration', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, '2', 'option_auto_recording');

// Launch change of nullability for field registration.
$dbman->change_field_notnull($table, $field);

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

// Zoom savepoint reached.
upgrade_mod_savepoint(true, 2024012500, 'zoom');
}

return true;
}
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'mod_zoom';
$plugin->version = 2023121400;
$plugin->version = 2024012500;
$plugin->release = 'v5.1.4';
$plugin->requires = 2019052000;
$plugin->maturity = MATURITY_STABLE;
Expand Down

0 comments on commit 0b678e2

Please sign in to comment.