Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / blocks / activity_modules / db / postgres7.php
blob228bade0d51a8674ae3004fa4ae3c6ca0aec9954
1 <?PHP //$Id$
3 // THIS FILE IS DEPRECATED! PLEASE DO NOT MAKE CHANGES TO IT!
4 //
5 // IT IS USED ONLY FOR UPGRADES FROM BEFORE MOODLE 1.7, ALL
6 // LATER CHANGES SHOULD USE upgrade.php IN THIS DIRECTORY.
7 //
8 // This file is tailored to PostgreSQL
10 function activity_modules_upgrade($oldversion=0) {
12 global $CFG;
14 $result = true;
16 if ($oldversion < 2004041000 and $result) {
17 $result = true; //Nothing to do
20 ////// DO NOT ADD NEW THINGS HERE!! USE upgrade.php and the lib/ddllib.php functions.
22 //Finally, return result
23 return $result;