MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts
[moodle.git] / mod / choice / db / upgrade.php
blobf539254e4a48a70d82246e6681948cfbe5b941c6
1 <?php
2 // This file keeps track of upgrades to
3 // the choice module
4 //
5 // Sometimes, changes between versions involve
6 // alterations to database structures and other
7 // major things that may break installations.
8 //
9 // The upgrade function in this file will attempt
10 // to perform all the necessary actions to upgrade
11 // your older installation to the current version.
13 // If there's something it cannot do itself, it
14 // will tell you what you need to do.
16 // The commands in here will all be database-neutral,
17 // using the methods of database_manager class
19 // Please do not forget to use upgrade_set_timeout()
20 // before any action that may take longer time to finish.
22 defined('MOODLE_INTERNAL') || die();
24 function xmldb_choice_upgrade($oldversion) {
25 global $CFG;
27 // Automatically generated Moodle v3.2.0 release upgrade line.
28 // Put any upgrade step following this.
30 // Automatically generated Moodle v3.3.0 release upgrade line.
31 // Put any upgrade step following this.
33 // Automatically generated Moodle v3.4.0 release upgrade line.
34 // Put any upgrade step following this.
36 // Automatically generated Moodle v3.5.0 release upgrade line.
37 // Put any upgrade step following this.
39 return true;