MDL-57613 enrol_lti: Correct location of upgrade step

This commit is contained in:
Andrew Nicols 2017-01-19 07:56:27 +08:00
parent 121c17a72e
commit 59925af580

View File

@ -242,6 +242,9 @@ function xmldb_enrol_lti_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2016052304, 'enrol', 'lti');
}
// Automatically generated Moodle v3.2.0 release upgrade line.
// Put any upgrade step following this.
if ($oldversion < 2017011300) {
// Changing precision of field value on table enrol_lti_lti2_nonce to (64).
@ -255,8 +258,5 @@ function xmldb_enrol_lti_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2017011300, 'enrol', 'lti');
}
// Automatically generated Moodle v3.2.0 release upgrade line.
// Put any upgrade step following this.
return true;
}