Skip to content

Commit

Permalink
db: bump version so upgrade triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
jrchamp committed Jul 25, 2024
1 parent f8d8897 commit 1a4d42e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -990,8 +990,7 @@ function xmldb_zoom_upgrade($oldversion) {
upgrade_mod_savepoint(true, 2024070300, 'zoom');
}

if ($oldversion < XXXXXXXXXX) {

if ($oldversion < 2024072500) {
// Changing precision of field recordingtype on table zoom_meeting_recordings to (50).
$table = new xmldb_table('zoom_meeting_recordings');
$field = new xmldb_field('recordingtype', XMLDB_TYPE_CHAR, '50', null, XMLDB_NOTNULL, null, null, 'passcode');
Expand All @@ -1000,7 +999,7 @@ function xmldb_zoom_upgrade($oldversion) {
$dbman->change_field_precision($table, $field);

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

return true;
Expand Down
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 = 2024070300;
$plugin->version = 2024072500;
$plugin->release = 'v5.2.3';
$plugin->requires = 2019052000;
$plugin->maturity = MATURITY_STABLE;
Expand Down

0 comments on commit 1a4d42e

Please sign in to comment.