Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / question / type / randomsamatch / db / mysql.php
blob641cf3c9099c67136f78d53184af769e2c2cf776
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.
8 // MySQL commands for upgrading this question type
10 function qtype_randomsamatch_upgrade($oldversion=0) {
11 global $CFG;
13 if ($oldversion < 2006042800) {
14 // This is a random questiontype and therefore answers are always shuffled, no need for this field
15 modify_database('', 'ALTER TABLE prefix_question_randomsamatch DROP shuffleanswers');
18 ////// DO NOT ADD NEW THINGS HERE!! USE upgrade.php and the lib/ddllib.php functions.
20 return true;