b8a342d7 |
1 | <?php //$Id$ |
ecfeb03a |
2 | |
3 | // This file keeps track of upgrades to |
4 | // the glossary module |
5 | // |
6 | // Sometimes, changes between versions involve |
7 | // alterations to database structures and other |
8 | // major things that may break installations. |
9 | // |
10 | // The upgrade function in this file will attempt |
11 | // to perform all the necessary actions to upgrade |
12 | // your older installtion to the current version. |
13 | // |
14 | // If there's something it cannot do itself, it |
15 | // will tell you what you need to do. |
16 | // |
17 | // The commands in here will all be database-neutral, |
b1f93b15 |
18 | // using the methods of database_manager class |
775f811a |
19 | // |
20 | // Please do not forget to use upgrade_set_timeout() |
21 | // before any action that may take longer time to finish. |
ecfeb03a |
22 | |
775f811a |
23 | function xmldb_glossary_upgrade($oldversion) { |
24 | global $CFG, $DB; |
ecfeb03a |
25 | |
775f811a |
26 | $dbman = $DB->get_manager(); |
ecfeb03a |
27 | $result = true; |
28 | |
219f652b |
29 | //===== 1.9.0 upgrade line ======// |
ecfeb03a |
30 | |
31 | return $result; |
32 | } |
33 | |
34 | ?> |