diff --git a/db/install.xml b/db/install.xml old mode 100644 new mode 100755 index e2c9c20a..163f6314 --- a/db/install.xml +++ b/db/install.xml @@ -1,7 +1,7 @@ - @@ -124,7 +124,7 @@ - + diff --git a/db/upgrade.php b/db/upgrade.php index 599209ca..d92d4dd2 100755 --- a/db/upgrade.php +++ b/db/upgrade.php @@ -990,5 +990,17 @@ function xmldb_zoom_upgrade($oldversion) { upgrade_mod_savepoint(true, 2024070300, 'zoom'); } + 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'); + + // Launch change of precision for field recordingtype. + $dbman->change_field_precision($table, $field); + + // Zoom savepoint reached. + upgrade_mod_savepoint(true, 2024072500, 'zoom'); + } + return true; } diff --git a/version.php b/version.php index b13a4338..4f2aa3db 100755 --- a/version.php +++ b/version.php @@ -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;