Commit | Line | Data |
---|---|---|
86342d63 | 1 | <?php |
cbc2b5df | 2 | // This file keeps track of upgrades to |
ecfeb03a | 3 | // the glossary 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 | |
2e0406a5 | 11 | // your older installation to the current version. |
ecfeb03a | 12 | // |
13 | // If there's something it cannot do itself, it | |
14 | // will tell you what you need to do. | |
15 | // | |
16 | // The commands in here will all be database-neutral, | |
b1f93b15 | 17 | // using the methods of database_manager class |
775f811a | 18 | // |
19 | // Please do not forget to use upgrade_set_timeout() | |
20 | // before any action that may take longer time to finish. | |
ecfeb03a | 21 | |
775f811a | 22 | function xmldb_glossary_upgrade($oldversion) { |
a26cfe71 | 23 | global $DB; |
6499085f | 24 | |
f47c8f35 EL |
25 | // Automatically generated Moodle v3.6.0 release upgrade line. |
26 | // Put any upgrade step following this. | |
27 | ||
3572a25c EL |
28 | // Automatically generated Moodle v3.7.0 release upgrade line. |
29 | // Put any upgrade step following this. | |
30 | ||
492d047d EL |
31 | // Automatically generated Moodle v3.8.0 release upgrade line. |
32 | // Put any upgrade step following this. | |
33 | ||
b764343e EL |
34 | // Automatically generated Moodle v3.9.0 release upgrade line. |
35 | // Put any upgrade step following this. | |
36 | ||
76f54454 EL |
37 | // Automatically generated Moodle v4.0.0 release upgrade line. |
38 | // Put any upgrade step following this. | |
39 | ||
a4cdd6d2 | 40 | return true; |
ecfeb03a | 41 | } |