3 // This file keeps track of upgrades to
6 // Sometimes, changes between versions involve
7 // alterations to database structures and other
8 // major things that may break installations.
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.
14 // If there's something it cannot do itself, it
15 // will tell you what you need to do.
17 // The commands in here will all be database-neutral,
18 // using the functions defined in lib/ddllib.php
20 function xmldb_data_upgrade($oldversion=0) {
22 global $CFG, $THEME, $db;
26 /// And upgrade begins here. For each one, you'll need one
27 /// block of code similar to the next one. Please, delete
28 /// this comment lines once this file start handling proper
31 /// if ($result && $oldversion < YYYYMMDD00) { //New version in version.php
32 /// $result = result of "/lib/ddllib.php" function calls
35 if ($result && $oldversion < 2006121300) {
37 /// Define field format to be added to data_comments
38 $table = new XMLDBTable('data_comments');
39 $field = new XMLDBField('format');
40 $field->setAttributes(XMLDB_TYPE_INTEGER
, '2', XMLDB_UNSIGNED
, XMLDB_NOTNULL
, null, null, null, '0', 'content');
42 /// Launch add field format
43 $result = $result && add_field($table, $field);
47 if ($result && $oldversion < 2007022600) {
48 /// Define field asearchtemplate to be added to data
49 $table = new XMLDBTable('data');
50 $field = new XMLDBField('asearchtemplate');
51 $field->setAttributes(XMLDB_TYPE_TEXT
, 'small', null, null, null, null, null, null, 'jstemplate');
53 /// Launch add field asearchtemplate
54 $result = $result && add_field($table, $field);
58 if ($result && $oldversion < 2007060600) {
59 require_once($CFG->dirroot
.'/mod/data/lib.php');
60 // too much debug output