MDL-21694 Moving question types strings into plugin space
[moodle.git] / repository / mahara / db / upgrade.php
CommitLineData
c86dde2e 1<?php
2
3function xmldb_repository_mahara_upgrade($oldversion) {
4
5 global $CFG, $DB;
6
7 $dbman = $DB->get_manager();
8 $result = true;
9
10/// And upgrade begins here. For each one, you'll need one
11/// block of code similar to the next one. Please, delete
12/// this comment lines once this file start handling proper
13/// upgrade code.
14
15/// if ($result && $oldversion < YYYYMMDD00) { //New version in version.php
16/// $result = result of database_manager methods
17/// }
18
19 return $result;
20}