MDL-38314 repository: Remove orphan repository instances
[moodle.git] / lib / db / upgrade.php
blob207689fb5f3c31e0fbb8c6610966f962a5783358
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * This file keeps track of upgrades to Moodle.
20 * Sometimes, changes between versions involve
21 * alterations to database structures and other
22 * major things that may break installations.
24 * The upgrade function in this file will attempt
25 * to perform all the necessary actions to upgrade
26 * your older installation to the current version.
28 * If there's something it cannot do itself, it
29 * will tell you what you need to do.
31 * The commands in here will all be database-neutral,
32 * using the methods of database_manager class
34 * Please do not forget to use upgrade_set_timeout()
35 * before any action that may take longer time to finish.
37 * @package core_install
38 * @category upgrade
39 * @copyright 2006 onwards Martin Dougiamas http://dougiamas.com
40 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
43 defined('MOODLE_INTERNAL') || die();
45 /**
46 * Main upgrade tasks to be executed on Moodle version bump
48 * This function is automatically executed after one bump in the Moodle core
49 * version is detected. It's in charge of performing the required tasks
50 * to raise core from the previous version to the next one.
52 * It's a collection of ordered blocks of code, named "upgrade steps",
53 * each one performing one isolated (from the rest of steps) task. Usually
54 * tasks involve creating new DB objects or performing manipulation of the
55 * information for cleanup/fixup purposes.
57 * Each upgrade step has a fixed structure, that can be summarised as follows:
59 * if ($oldversion < XXXXXXXXXX.XX) {
60 * // Explanation of the update step, linking to issue in the Tracker if necessary
61 * upgrade_set_timeout(XX); // Optional for big tasks
62 * // Code to execute goes here, usually the XMLDB Editor will
63 * // help you here. See {@link http://docs.moodle.org/dev/XMLDB_editor}.
64 * upgrade_main_savepoint(true, XXXXXXXXXX.XX);
65 * }
67 * All plugins within Moodle (modules, blocks, reports...) support the existence of
68 * their own upgrade.php file, using the "Frankenstyle" component name as
69 * defined at {@link http://docs.moodle.org/dev/Frankenstyle}, for example:
70 * - {@link xmldb_page_upgrade($oldversion)}. (modules don't require the plugintype ("mod_") to be used.
71 * - {@link xmldb_auth_manual_upgrade($oldversion)}.
72 * - {@link xmldb_workshopform_accumulative_upgrade($oldversion)}.
73 * - ....
75 * In order to keep the contents of this file reduced, it's allowed to create some helper
76 * functions to be used here in the {@link upgradelib.php} file at the same directory. Note
77 * that such a file must be manually included from upgrade.php, and there are some restrictions
78 * about what can be used within it.
80 * For more information, take a look to the documentation available:
81 * - Data definition API: {@link http://docs.moodle.org/dev/Data_definition_API}
82 * - Upgrade API: {@link http://docs.moodle.org/dev/Upgrade_API}
84 * @param int $oldversion
85 * @return bool always true
87 function xmldb_main_upgrade($oldversion) {
88 global $CFG, $USER, $DB, $OUTPUT, $SITE;
90 require_once($CFG->libdir.'/db/upgradelib.php'); // Core Upgrade-related functions
92 $dbman = $DB->get_manager(); // loads ddl manager and xmldb classes
94 if ($oldversion < 2011120500) {
95 // just in case somebody hacks upgrade scripts or env, we really can not continue
96 echo("You need to upgrade to 2.2.x first!\n");
97 exit(1);
98 // Note this savepoint is 100% unreachable, but needed to pass the upgrade checks
99 upgrade_main_savepoint(true, 2011120500);
102 // Moodle v2.2.0 release upgrade line
103 // Put any upgrade step following this
105 if ($oldversion < 2011120500.02) {
107 upgrade_set_timeout(60*20); // This may take a while
108 // MDL-28180. Some missing restrictions in certain backup & restore operations
109 // were causing incorrect duplicates in the course_completion_aggr_methd table.
110 // This upgrade step takes rid of them.
111 $sql = 'SELECT course, criteriatype, MIN(id) AS minid
112 FROM {course_completion_aggr_methd}
113 GROUP BY course, criteriatype
114 HAVING COUNT(*) > 1';
115 $duprs = $DB->get_recordset_sql($sql);
116 foreach ($duprs as $duprec) {
117 // We need to handle NULLs in criteriatype diferently
118 if (is_null($duprec->criteriatype)) {
119 $where = 'course = ? AND criteriatype IS NULL AND id > ?';
120 $params = array($duprec->course, $duprec->minid);
121 } else {
122 $where = 'course = ? AND criteriatype = ? AND id > ?';
123 $params = array($duprec->course, $duprec->criteriatype, $duprec->minid);
125 $DB->delete_records_select('course_completion_aggr_methd', $where, $params);
127 $duprs->close();
129 // Main savepoint reached
130 upgrade_main_savepoint(true, 2011120500.02);
133 if ($oldversion < 2011120500.03) {
135 // Changing precision of field value on table user_preferences to (1333)
136 $table = new xmldb_table('user_preferences');
137 $field = new xmldb_field('value', XMLDB_TYPE_CHAR, '1333', null, XMLDB_NOTNULL, null, null, 'name');
139 // Launch change of precision for field value
140 $dbman->change_field_precision($table, $field);
142 // Main savepoint reached
143 upgrade_main_savepoint(true, 2011120500.03);
146 if ($oldversion < 2012020200.03) {
148 // Define index rolecontext (not unique) to be added to role_assignments
149 $table = new xmldb_table('role_assignments');
150 $index = new xmldb_index('rolecontext', XMLDB_INDEX_NOTUNIQUE, array('roleid', 'contextid'));
152 // Conditionally launch add index rolecontext
153 if (!$dbman->index_exists($table, $index)) {
154 $dbman->add_index($table, $index);
157 // Define index usercontextrole (not unique) to be added to role_assignments
158 $index = new xmldb_index('usercontextrole', XMLDB_INDEX_NOTUNIQUE, array('userid', 'contextid', 'roleid'));
160 // Conditionally launch add index usercontextrole
161 if (!$dbman->index_exists($table, $index)) {
162 $dbman->add_index($table, $index);
165 // Main savepoint reached
166 upgrade_main_savepoint(true, 2012020200.03);
169 if ($oldversion < 2012020200.06) {
170 // Previously we always allowed users to override their email address via the messaging system
171 // We have now added a setting to allow admins to turn this this ability on and off
172 // While this setting defaults to 0 (off) we're setting it to 1 (on) to maintain the behaviour for upgrading sites
173 set_config('messagingallowemailoverride', 1);
175 // Main savepoint reached
176 upgrade_main_savepoint(true, 2012020200.06);
179 if ($oldversion < 2012021700.01) {
180 // Changing precision of field uniquehash on table post to 255
181 $table = new xmldb_table('post');
182 $field = new xmldb_field('uniquehash', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null, 'content');
184 // Launch change of precision for field uniquehash
185 $dbman->change_field_precision($table, $field);
187 // Main savepoint reached
188 upgrade_main_savepoint(true, 2012021700.01);
191 if ($oldversion < 2012021700.02) {
192 // Somewhere before 1.9 summary and content column in post table were not null. In 1.9+
193 // not null became false.
194 $columns = $DB->get_columns('post');
196 // Fix discrepancies in summary field after upgrade from 1.9
197 if (array_key_exists('summary', $columns) && $columns['summary']->not_null != false) {
198 $table = new xmldb_table('post');
199 $summaryfield = new xmldb_field('summary', XMLDB_TYPE_TEXT, 'big', null, null, null, null, 'subject');
201 if ($dbman->field_exists($table, $summaryfield)) {
202 $dbman->change_field_notnull($table, $summaryfield);
207 // Fix discrepancies in content field after upgrade from 1.9
208 if (array_key_exists('content', $columns) && $columns['content']->not_null != false) {
209 $table = new xmldb_table('post');
210 $contentfield = new xmldb_field('content', XMLDB_TYPE_TEXT, 'big', null, null, null, null, 'summary');
212 if ($dbman->field_exists($table, $contentfield)) {
213 $dbman->change_field_notnull($table, $contentfield);
218 upgrade_main_savepoint(true, 2012021700.02);
221 // The ability to backup user (private) files is out completely - MDL-29248
222 if ($oldversion < 2012030100.01) {
223 unset_config('backup_general_user_files', 'backup');
224 unset_config('backup_general_user_files_locked', 'backup');
225 unset_config('backup_auto_user_files', 'backup');
227 upgrade_main_savepoint(true, 2012030100.01);
230 if ($oldversion < 2012030900.01) {
231 // Migrate all numbers to signed & all texts and binaries to big size.
232 // It should be safe to interrupt this and continue later.
233 upgrade_mysql_fix_unsigned_and_lob_columns();
235 // Main savepoint reached
236 upgrade_main_savepoint(true, 2012030900.01);
239 if ($oldversion < 2012031500.01) {
240 // Upgrade old course_allowed_modules data to be permission overrides.
241 if ($CFG->restrictmodulesfor === 'all') {
242 $courses = $DB->get_records_menu('course', array(), 'id', 'id, 1');
243 } else if ($CFG->restrictmodulesfor === 'requested') {
244 $courses = $DB->get_records_menu('course', array('restrictmodules' => 1), 'id', 'id, 1');
245 } else {
246 $courses = array();
249 if (!$dbman->table_exists('course_allowed_modules')) {
250 // Upgrade must already have been run on this server. This might happen,
251 // for example, during development of these changes.
252 $courses = array();
255 $modidtoname = $DB->get_records_menu('modules', array(), 'id', 'id, name');
257 $coursecount = count($courses);
258 if ($coursecount) {
259 $pbar = new progress_bar('allowedmods', 500, true);
260 $transaction = $DB->start_delegated_transaction();
263 $i = 0;
264 foreach ($courses as $courseid => $notused) {
265 $i += 1;
266 upgrade_set_timeout(60); // 1 minute per course should be fine.
268 $allowedmoduleids = $DB->get_records_menu('course_allowed_modules',
269 array('course' => $courseid), 'module', 'module, 1');
270 if (empty($allowedmoduleids)) {
271 // This seems to be the best match for backwards compatibility,
272 // not necessarily with the old code in course_allowed_module function,
273 // but with the code that used to be in the coures settings form.
274 $allowedmoduleids = explode(',', $CFG->defaultallowedmodules);
275 $allowedmoduleids = array_combine($allowedmoduleids, $allowedmoduleids);
278 $context = context_course::instance($courseid);
280 list($roleids) = get_roles_with_cap_in_context($context, 'moodle/course:manageactivities');
281 list($managerroleids) = get_roles_with_cap_in_context($context, 'moodle/site:config');
282 foreach ($managerroleids as $roleid) {
283 unset($roleids[$roleid]);
286 foreach ($modidtoname as $modid => $modname) {
287 if (isset($allowedmoduleids[$modid])) {
288 // Module is allowed, no worries.
289 continue;
292 $capability = 'mod/' . $modname . ':addinstance';
293 foreach ($roleids as $roleid) {
294 assign_capability($capability, CAP_PREVENT, $roleid, $context);
298 $pbar->update($i, $coursecount, "Upgrading legacy course_allowed_modules data - $i/$coursecount.");
301 if ($coursecount) {
302 $transaction->allow_commit();
305 upgrade_main_savepoint(true, 2012031500.01);
308 if ($oldversion < 2012031500.02) {
310 // Define field restrictmodules to be dropped from course
311 $table = new xmldb_table('course');
312 $field = new xmldb_field('restrictmodules');
314 // Conditionally launch drop field requested
315 if ($dbman->field_exists($table, $field)) {
316 $dbman->drop_field($table, $field);
319 upgrade_main_savepoint(true, 2012031500.02);
322 if ($oldversion < 2012031500.03) {
324 // Define table course_allowed_modules to be dropped
325 $table = new xmldb_table('course_allowed_modules');
327 // Conditionally launch drop table for course_allowed_modules
328 if ($dbman->table_exists($table)) {
329 $dbman->drop_table($table);
332 upgrade_main_savepoint(true, 2012031500.03);
335 if ($oldversion < 2012031500.04) {
336 // Clean up the old admin settings.
337 unset_config('restrictmodulesfor');
338 unset_config('restrictbydefault');
339 unset_config('defaultallowedmodules');
341 upgrade_main_savepoint(true, 2012031500.04);
344 if ($oldversion < 2012032300.02) {
345 // Migrate the old admin debug setting.
346 if ($CFG->debug == 38911) {
347 set_config('debug', DEBUG_DEVELOPER);
348 } else if ($CFG->debug == 6143) {
349 set_config('debug', DEBUG_ALL);
351 upgrade_main_savepoint(true, 2012032300.02);
354 if ($oldversion < 2012042300.00) {
355 // This change makes the course_section index unique.
357 // xmldb does not allow changing index uniqueness - instead we must drop
358 // index then add it again
359 $table = new xmldb_table('course_sections');
360 $index = new xmldb_index('course_section', XMLDB_INDEX_NOTUNIQUE, array('course', 'section'));
362 // Conditionally launch drop index course_section
363 if ($dbman->index_exists($table, $index)) {
364 $dbman->drop_index($table, $index);
367 // Look for any duplicate course_sections entries. There should not be
368 // any but on some busy systems we found a few, maybe due to previous
369 // bugs.
370 $transaction = $DB->start_delegated_transaction();
371 $rs = $DB->get_recordset_sql('
372 SELECT DISTINCT
373 cs.id, cs.course
374 FROM
375 {course_sections} cs
376 INNER JOIN {course_sections} older
377 ON cs.course = older.course AND cs.section = older.section
378 AND older.id < cs.id');
379 foreach ($rs as $rec) {
380 $DB->delete_records('course_sections', array('id' => $rec->id));
381 // We can't use rebuild_course_cache() here because introducing sectioncache later
382 // so reset modinfo manually.
383 $DB->set_field('course', 'modinfo', null, array('id' => $rec->course));
385 $rs->close();
386 $transaction->allow_commit();
388 // Define index course_section (unique) to be added to course_sections
389 $index = new xmldb_index('course_section', XMLDB_INDEX_UNIQUE, array('course', 'section'));
391 // Conditionally launch add index course_section
392 if (!$dbman->index_exists($table, $index)) {
393 $dbman->add_index($table, $index);
396 // Main savepoint reached
397 upgrade_main_savepoint(true, 2012042300.00);
400 if ($oldversion < 2012042300.02) {
401 require_once($CFG->dirroot.'/completion/criteria/completion_criteria.php');
402 // Delete orphaned criteria which were left when modules were removed
403 if ($DB->get_dbfamily() === 'mysql') {
404 $sql = "DELETE cc FROM {course_completion_criteria} cc
405 LEFT JOIN {course_modules} cm ON cm.id = cc.moduleinstance
406 WHERE cm.id IS NULL AND cc.criteriatype = ".COMPLETION_CRITERIA_TYPE_ACTIVITY;
407 } else {
408 $sql = "DELETE FROM {course_completion_criteria}
409 WHERE NOT EXISTS (
410 SELECT 'x' FROM {course_modules}
411 WHERE {course_modules}.id = {course_completion_criteria}.moduleinstance)
412 AND {course_completion_criteria}.criteriatype = ".COMPLETION_CRITERIA_TYPE_ACTIVITY;
414 $DB->execute($sql);
416 // Main savepoint reached
417 upgrade_main_savepoint(true, 2012042300.02);
420 if ($oldversion < 2012050300.01) {
421 // Make sure deleted users do not have picture flag.
422 $DB->set_field('user', 'picture', 0, array('deleted'=>1, 'picture'=>1));
423 upgrade_main_savepoint(true, 2012050300.01);
426 if ($oldversion < 2012050300.02) {
428 // Changing precision of field picture on table user to (10)
429 $table = new xmldb_table('user');
430 $field = new xmldb_field('picture', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'secret');
432 // Launch change of precision for field picture
433 $dbman->change_field_precision($table, $field);
435 // Main savepoint reached
436 upgrade_main_savepoint(true, 2012050300.02);
439 if ($oldversion < 2012050300.03) {
441 // Define field coursedisplay to be added to course
442 $table = new xmldb_table('course');
443 $field = new xmldb_field('coursedisplay', XMLDB_TYPE_INTEGER, '2', null, XMLDB_NOTNULL, null, '0', 'completionnotify');
445 // Conditionally launch add field coursedisplay
446 if (!$dbman->field_exists($table, $field)) {
447 $dbman->add_field($table, $field);
450 // Main savepoint reached
451 upgrade_main_savepoint(true, 2012050300.03);
454 if ($oldversion < 2012050300.04) {
456 // Define table course_display to be dropped
457 $table = new xmldb_table('course_display');
459 // Conditionally launch drop table for course_display
460 if ($dbman->table_exists($table)) {
461 $dbman->drop_table($table);
464 // Main savepoint reached
465 upgrade_main_savepoint(true, 2012050300.04);
468 if ($oldversion < 2012050300.05) {
470 // Clean up removed admin setting.
471 unset_config('navlinkcoursesections');
473 upgrade_main_savepoint(true, 2012050300.05);
476 if ($oldversion < 2012050400.01) {
478 // Define index sortorder (not unique) to be added to course
479 $table = new xmldb_table('course');
480 $index = new xmldb_index('sortorder', XMLDB_INDEX_NOTUNIQUE, array('sortorder'));
482 // Conditionally launch add index sortorder
483 if (!$dbman->index_exists($table, $index)) {
484 $dbman->add_index($table, $index);
487 // Main savepoint reached
488 upgrade_main_savepoint(true, 2012050400.01);
491 if ($oldversion < 2012050400.02) {
493 // Clean up removed admin setting.
494 unset_config('enablecourseajax');
496 upgrade_main_savepoint(true, 2012050400.02);
499 if ($oldversion < 2012051100.01) {
501 // Define field idnumber to be added to groups
502 $table = new xmldb_table('groups');
503 $field = new xmldb_field('idnumber', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'courseid');
504 $index = new xmldb_index('idnumber', XMLDB_INDEX_NOTUNIQUE, array('idnumber'));
506 // Conditionally launch add field idnumber
507 if (!$dbman->field_exists($table, $field)) {
508 $dbman->add_field($table, $field);
511 // Conditionally launch add index idnumber
512 if (!$dbman->index_exists($table, $index)) {
513 $dbman->add_index($table, $index);
516 // Define field idnumber to be added to groupings
517 $table = new xmldb_table('groupings');
518 $field = new xmldb_field('idnumber', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'name');
519 $index = new xmldb_index('idnumber', XMLDB_INDEX_NOTUNIQUE, array('idnumber'));
521 // Conditionally launch add field idnumber
522 if (!$dbman->field_exists($table, $field)) {
523 $dbman->add_field($table, $field);
526 // Conditionally launch add index idnumber
527 if (!$dbman->index_exists($table, $index)) {
528 $dbman->add_index($table, $index);
531 // Main savepoint reached
532 upgrade_main_savepoint(true, 2012051100.01);
535 if ($oldversion < 2012051100.03) {
537 // Amend course table to add sectioncache cache
538 $table = new xmldb_table('course');
539 $field = new xmldb_field('sectioncache', XMLDB_TYPE_TEXT, null, null, null, null, null, 'showgrades');
540 if (!$dbman->field_exists($table, $field)) {
541 $dbman->add_field($table, $field);
544 // Amend course_sections to add date, time and groupingid availability
545 // conditions and a setting about whether to show them
546 $table = new xmldb_table('course_sections');
547 $field = new xmldb_field('availablefrom', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'visible');
548 if (!$dbman->field_exists($table, $field)) {
549 $dbman->add_field($table, $field);
551 $field = new xmldb_field('availableuntil', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'availablefrom');
552 if (!$dbman->field_exists($table, $field)) {
553 $dbman->add_field($table, $field);
555 $field = new xmldb_field('showavailability', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, '0', 'availableuntil');
556 // Conditionally launch add field showavailability
557 if (!$dbman->field_exists($table, $field)) {
558 $dbman->add_field($table, $field);
560 $field = new xmldb_field('groupingid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'showavailability');
561 // Conditionally launch add field groupingid
562 if (!$dbman->field_exists($table, $field)) {
563 $dbman->add_field($table, $field);
566 // Add course_sections_availability to add completion & grade availability conditions
567 $table = new xmldb_table('course_sections_availability');
569 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
570 $table->add_field('coursesectionid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
571 $table->add_field('sourcecmid', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
572 $table->add_field('requiredcompletion', XMLDB_TYPE_INTEGER, '1', null, null, null, null);
573 $table->add_field('gradeitemid', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
574 $table->add_field('grademin', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
575 $table->add_field('grademax', XMLDB_TYPE_NUMBER, '10, 5', null, null, null, null);
577 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
578 $table->add_key('coursesectionid', XMLDB_KEY_FOREIGN, array('coursesectionid'), 'course_sections', array('id'));
579 $table->add_key('sourcecmid', XMLDB_KEY_FOREIGN, array('sourcecmid'), 'course_modules', array('id'));
580 $table->add_key('gradeitemid', XMLDB_KEY_FOREIGN, array('gradeitemid'), 'grade_items', array('id'));
582 if (!$dbman->table_exists($table)) {
583 $dbman->create_table($table);
586 // Main savepoint reached
587 upgrade_main_savepoint(true, 2012051100.03);
590 if ($oldversion < 2012052100.00) {
592 // Define field referencefileid to be added to files.
593 $table = new xmldb_table('files');
595 // Define field referencefileid to be added to files.
596 $field = new xmldb_field('referencefileid', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'sortorder');
598 // Conditionally launch add field referencefileid.
599 if (!$dbman->field_exists($table, $field)) {
600 $dbman->add_field($table, $field);
603 // Define field referencelastsync to be added to files.
604 $field = new xmldb_field('referencelastsync', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'referencefileid');
606 // Conditionally launch add field referencelastsync.
607 if (!$dbman->field_exists($table, $field)) {
608 $dbman->add_field($table, $field);
611 // Define field referencelifetime to be added to files.
612 $field = new xmldb_field('referencelifetime', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'referencelastsync');
614 // Conditionally launch add field referencelifetime.
615 if (!$dbman->field_exists($table, $field)) {
616 $dbman->add_field($table, $field);
619 $key = new xmldb_key('referencefileid', XMLDB_KEY_FOREIGN, array('referencefileid'), 'files_reference', array('id'));
620 // Launch add key referencefileid
621 $dbman->add_key($table, $key);
623 // Define table files_reference to be created.
624 $table = new xmldb_table('files_reference');
626 // Adding fields to table files_reference.
627 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
628 $table->add_field('repositoryid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
629 $table->add_field('lastsync', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
630 $table->add_field('lifetime', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
631 $table->add_field('reference', XMLDB_TYPE_TEXT, null, null, null, null, null);
633 // Adding keys to table files_reference.
634 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
635 $table->add_key('repositoryid', XMLDB_KEY_FOREIGN, array('repositoryid'), 'repository_instances', array('id'));
637 // Conditionally launch create table for files_reference
638 if (!$dbman->table_exists($table)) {
639 $dbman->create_table($table);
642 // Main savepoint reached
643 upgrade_main_savepoint(true, 2012052100.00);
646 if ($oldversion < 2012052500.03) { // fix invalid course_completion_records MDL-27368
647 //first get all instances of duplicate records
648 $sql = 'SELECT userid, course FROM {course_completions} WHERE (deleted IS NULL OR deleted <> 1) GROUP BY userid, course HAVING (count(id) > 1)';
649 $duplicates = $DB->get_recordset_sql($sql, array());
651 foreach ($duplicates as $duplicate) {
652 $pointer = 0;
653 //now get all the records for this user/course
654 $sql = 'userid = ? AND course = ? AND (deleted IS NULL OR deleted <> 1)';
655 $completions = $DB->get_records_select('course_completions', $sql,
656 array($duplicate->userid, $duplicate->course), 'timecompleted DESC, timestarted DESC');
657 $needsupdate = false;
658 $origcompletion = null;
659 foreach ($completions as $completion) {
660 $pointer++;
661 if ($pointer === 1) { //keep 1st record but delete all others.
662 $origcompletion = $completion;
663 } else {
664 //we need to keep the "oldest" of all these fields as the valid completion record.
665 $fieldstocheck = array('timecompleted', 'timestarted', 'timeenrolled');
666 foreach ($fieldstocheck as $f) {
667 if ($origcompletion->$f > $completion->$f) {
668 $origcompletion->$f = $completion->$f;
669 $needsupdate = true;
672 $DB->delete_records('course_completions', array('id'=>$completion->id));
675 if ($needsupdate) {
676 $DB->update_record('course_completions', $origcompletion);
680 // Main savepoint reached
681 upgrade_main_savepoint(true, 2012052500.03);
684 if ($oldversion < 2012052900.00) {
685 // Clean up all duplicate records in the course_completions table in preparation
686 // for adding a new index there.
687 upgrade_course_completion_remove_duplicates(
688 'course_completions',
689 array('userid', 'course'),
690 array('timecompleted', 'timestarted', 'timeenrolled')
693 // Main savepoint reached
694 upgrade_main_savepoint(true, 2012052900.00);
697 if ($oldversion < 2012052900.01) {
698 // Add indexes to prevent new duplicates in the course_completions table.
699 // Define index useridcourse (unique) to be added to course_completions
700 $table = new xmldb_table('course_completions');
701 $index = new xmldb_index('useridcourse', XMLDB_INDEX_UNIQUE, array('userid', 'course'));
703 // Conditionally launch add index useridcourse
704 if (!$dbman->index_exists($table, $index)) {
705 $dbman->add_index($table, $index);
708 // Main savepoint reached
709 upgrade_main_savepoint(true, 2012052900.01);
712 if ($oldversion < 2012052900.02) {
713 // Clean up all duplicate records in the course_completion_crit_compl table in preparation
714 // for adding a new index there.
715 upgrade_course_completion_remove_duplicates(
716 'course_completion_crit_compl',
717 array('userid', 'course', 'criteriaid'),
718 array('timecompleted')
721 // Main savepoint reached
722 upgrade_main_savepoint(true, 2012052900.02);
725 if ($oldversion < 2012052900.03) {
726 // Add indexes to prevent new duplicates in the course_completion_crit_compl table.
727 // Define index useridcoursecriteraid (unique) to be added to course_completion_crit_compl
728 $table = new xmldb_table('course_completion_crit_compl');
729 $index = new xmldb_index('useridcoursecriteraid', XMLDB_INDEX_UNIQUE, array('userid', 'course', 'criteriaid'));
731 // Conditionally launch add index useridcoursecriteraid
732 if (!$dbman->index_exists($table, $index)) {
733 $dbman->add_index($table, $index);
736 // Main savepoint reached
737 upgrade_main_savepoint(true, 2012052900.03);
740 if ($oldversion < 2012052900.04) {
741 // Clean up all duplicate records in the course_completion_aggr_methd table in preparation
742 // for adding a new index there.
743 upgrade_course_completion_remove_duplicates(
744 'course_completion_aggr_methd',
745 array('course', 'criteriatype')
748 // Main savepoint reached
749 upgrade_main_savepoint(true, 2012052900.04);
752 if ($oldversion < 2012052900.05) {
753 // Add indexes to prevent new duplicates in the course_completion_aggr_methd table.
754 // Define index coursecriteratype (unique) to be added to course_completion_aggr_methd
755 $table = new xmldb_table('course_completion_aggr_methd');
756 $index = new xmldb_index('coursecriteriatype', XMLDB_INDEX_UNIQUE, array('course', 'criteriatype'));
758 // Conditionally launch add index coursecriteratype
759 if (!$dbman->index_exists($table, $index)) {
760 $dbman->add_index($table, $index);
763 // Main savepoint reached
764 upgrade_main_savepoint(true, 2012052900.05);
767 if ($oldversion < 2012060600.01) {
768 // Add field referencehash to files_reference
769 $table = new xmldb_table('files_reference');
770 $field = new xmldb_field('referencehash', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null, 'reference');
771 if (!$dbman->field_exists($table, $field)) {
772 $dbman->add_field($table, $field);
774 upgrade_main_savepoint(true, 2012060600.01);
777 if ($oldversion < 2012060600.02) {
778 // Populate referencehash field with SHA1 hash of the reference - this shoudl affect only 2.3dev sites
779 // that were using the feature for testing. Production sites have the table empty.
780 $rs = $DB->get_recordset('files_reference', null, '', 'id, reference');
781 foreach ($rs as $record) {
782 $hash = sha1($record->reference);
783 $DB->set_field('files_reference', 'referencehash', $hash, array('id' => $record->id));
785 $rs->close();
787 upgrade_main_savepoint(true, 2012060600.02);
790 if ($oldversion < 2012060600.03) {
791 // Merge duplicate records in files_reference that were created during the development
792 // phase at 2.3dev sites. This is needed so we can create the unique index over
793 // (repositoryid, referencehash) fields.
794 $sql = "SELECT repositoryid, referencehash, MIN(id) AS minid
795 FROM {files_reference}
796 GROUP BY repositoryid, referencehash
797 HAVING COUNT(*) > 1";
798 $duprs = $DB->get_recordset_sql($sql);
799 foreach ($duprs as $duprec) {
800 // get the list of all ids in {files_reference} that need to be remapped
801 $dupids = $DB->get_records_select('files_reference', "repositoryid = ? AND referencehash = ? AND id > ?",
802 array($duprec->repositoryid, $duprec->referencehash, $duprec->minid), '', 'id');
803 $dupids = array_keys($dupids);
804 // relink records in {files} that are now referring to a duplicate record
805 // in {files_reference} to refer to the first one
806 list($subsql, $subparams) = $DB->get_in_or_equal($dupids);
807 $DB->set_field_select('files', 'referencefileid', $duprec->minid, "referencefileid $subsql", $subparams);
808 // and finally remove all orphaned records from {files_reference}
809 $DB->delete_records_list('files_reference', 'id', $dupids);
811 $duprs->close();
813 upgrade_main_savepoint(true, 2012060600.03);
816 if ($oldversion < 2012060600.04) {
817 // Add a unique index over repositoryid and referencehash fields in files_reference table
818 $table = new xmldb_table('files_reference');
819 $index = new xmldb_index('uq_external_file', XMLDB_INDEX_UNIQUE, array('repositoryid', 'referencehash'));
821 if (!$dbman->index_exists($table, $index)) {
822 $dbman->add_index($table, $index);
825 upgrade_main_savepoint(true, 2012060600.04);
828 if ($oldversion < 2012061800.01) {
830 // Define field screenreader to be dropped from user
831 $table = new xmldb_table('user');
832 $field = new xmldb_field('ajax');
834 // Conditionally launch drop field screenreader
835 if ($dbman->field_exists($table, $field)) {
836 $dbman->drop_field($table, $field);
839 // Main savepoint reached
840 upgrade_main_savepoint(true, 2012061800.01);
843 if ($oldversion < 2012062000.00) {
844 // Add field newcontextid to backup_files_template
845 $table = new xmldb_table('backup_files_template');
846 $field = new xmldb_field('newcontextid', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'info');
848 if (!$dbman->field_exists($table, $field)) {
849 $dbman->add_field($table, $field);
852 upgrade_main_savepoint(true, 2012062000.00);
855 if ($oldversion < 2012062000.01) {
856 // Add field newitemid to backup_files_template
857 $table = new xmldb_table('backup_files_template');
858 $field = new xmldb_field('newitemid', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'newcontextid');
860 if (!$dbman->field_exists($table, $field)) {
861 $dbman->add_field($table, $field);
864 upgrade_main_savepoint(true, 2012062000.01);
868 // Moodle v2.3.0 release upgrade line
869 // Put any upgrade step following this
872 if ($oldversion < 2012062500.02) {
873 // Drop some old backup tables, not used anymore
875 // Define table backup_files to be dropped
876 $table = new xmldb_table('backup_files');
878 // Conditionally launch drop table for backup_files
879 if ($dbman->table_exists($table)) {
880 $dbman->drop_table($table);
883 // Define table backup_ids to be dropped
884 $table = new xmldb_table('backup_ids');
886 // Conditionally launch drop table for backup_ids
887 if ($dbman->table_exists($table)) {
888 $dbman->drop_table($table);
891 // Main savepoint reached
892 upgrade_main_savepoint(true, 2012062500.02);
895 if ($oldversion < 2012070600.04) {
896 // Define table course_modules_avail_fields to be created
897 $table = new xmldb_table('course_modules_avail_fields');
899 // Adding fields to table course_modules_avail_fields
900 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
901 $table->add_field('coursemoduleid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
902 $table->add_field('userfield', XMLDB_TYPE_CHAR, '50', null, null, null, null);
903 $table->add_field('customfieldid', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
904 $table->add_field('operator', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null);
905 $table->add_field('value', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
907 // Adding keys to table course_modules_avail_fields
908 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
909 $table->add_key('coursemoduleid', XMLDB_KEY_FOREIGN, array('coursemoduleid'), 'course_modules', array('id'));
911 // Conditionally launch create table for course_modules_avail_fields
912 if (!$dbman->table_exists($table)) {
913 $dbman->create_table($table);
916 // Main savepoint reached
917 upgrade_main_savepoint(true, 2012070600.04);
920 if ($oldversion < 2012070600.05) {
921 // Define table course_sections_avail_fields to be created
922 $table = new xmldb_table('course_sections_avail_fields');
924 // Adding fields to table course_sections_avail_fields
925 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
926 $table->add_field('coursesectionid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
927 $table->add_field('userfield', XMLDB_TYPE_CHAR, '50', null, null, null, null);
928 $table->add_field('customfieldid', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
929 $table->add_field('operator', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null);
930 $table->add_field('value', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
932 // Adding keys to table course_sections_avail_fields
933 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
934 $table->add_key('coursesectionid', XMLDB_KEY_FOREIGN, array('coursesectionid'), 'course_sections', array('id'));
936 // Conditionally launch create table for course_sections_avail_fields
937 if (!$dbman->table_exists($table)) {
938 $dbman->create_table($table);
941 // Main savepoint reached
942 upgrade_main_savepoint(true, 2012070600.05);
945 if ($oldversion < 2012070600.06) {
947 // Drop "deleted" fields
948 $table = new xmldb_table('course_completions');
949 $field = new xmldb_field('timenotified');
950 $field = new xmldb_field('deleted');
952 // Conditionally launch drop field deleted from course_completions
953 if ($dbman->field_exists($table, $field)) {
954 $dbman->drop_field($table, $field);
957 $field = new xmldb_field('timenotified');
958 // Conditionally launch drop field timenotified from course_completions
959 if ($dbman->field_exists($table, $field)) {
960 $dbman->drop_field($table, $field);
963 // Main savepoint reached
964 upgrade_main_savepoint(true, 2012070600.06);
967 if ($oldversion < 2012070600.07) {
968 $table = new xmldb_table('course_completion_crit_compl');
969 $field = new xmldb_field('deleted');
971 // Conditionally launch drop field deleted from course_completion_crit_compl
972 if ($dbman->field_exists($table, $field)) {
973 $dbman->drop_field($table, $field);
975 // Main savepoint reached
976 upgrade_main_savepoint(true, 2012070600.07);
979 if ($oldversion < 2012070600.08) {
981 // Drop unused table "course_completion_notify"
982 $table = new xmldb_table('course_completion_notify');
984 // Conditionally launch drop table course_completion_notify
985 if ($dbman->table_exists($table)) {
986 $dbman->drop_table($table);
989 // Main savepoint reached
990 upgrade_main_savepoint(true, 2012070600.08);
993 if ($oldversion < 2012070600.09) {
995 // Define index path (not unique) to be added to context
996 $table = new xmldb_table('context');
997 $index = new xmldb_index('path', XMLDB_INDEX_NOTUNIQUE, array('path'), array('varchar_pattern_ops'));
999 // Recreate index with new pattern hint
1000 if ($DB->get_dbfamily() === 'postgres') {
1001 if ($dbman->index_exists($table, $index)) {
1002 $dbman->drop_index($table, $index);
1004 $dbman->add_index($table, $index);
1007 // Main savepoint reached
1008 upgrade_main_savepoint(true, 2012070600.09);
1011 if ($oldversion < 2012070600.10) {
1013 // Define index name (unique) to be dropped form role
1014 $table = new xmldb_table('role');
1015 $index = new xmldb_index('name', XMLDB_INDEX_UNIQUE, array('name'));
1017 // Conditionally launch drop index name
1018 if ($dbman->index_exists($table, $index)) {
1019 $dbman->drop_index($table, $index);
1022 // Main savepoint reached
1023 upgrade_main_savepoint(true, 2012070600.10);
1026 if ($oldversion < 2012070600.11) {
1028 // Define index component-itemid-userid (not unique) to be added to role_assignments
1029 $table = new xmldb_table('role_assignments');
1030 $index = new xmldb_index('component-itemid-userid', XMLDB_INDEX_NOTUNIQUE, array('component', 'itemid', 'userid'));
1032 // Conditionally launch add index component-itemid-userid
1033 if (!$dbman->index_exists($table, $index)) {
1034 $dbman->add_index($table, $index);
1037 // Main savepoint reached
1038 upgrade_main_savepoint(true, 2012070600.11);
1041 if ($oldversion < 2012071900.01) {
1042 // Cleanup after simpeltests tool
1043 capabilities_cleanup('tool_unittest');
1044 unset_all_config_for_plugin('tool_unittest');
1046 upgrade_main_savepoint(true, 2012071900.01);
1049 if ($oldversion < 2012072400.00) {
1050 // Remove obsolete xhtml strict setting - use THEME->doctype in theme config if necessary,
1051 // see theme_config->doctype in lib/outputlib.php for more details.
1052 unset_config('xmlstrictheaders');
1053 upgrade_main_savepoint(true, 2012072400.00);
1056 if ($oldversion < 2012072401.00) {
1058 // Saves orphaned questions from the Dark Side
1059 upgrade_save_orphaned_questions();
1061 // Main savepoint reached
1062 upgrade_main_savepoint(true, 2012072401.00);
1065 if ($oldversion < 2012072600.01) {
1066 // Handle events with empty eventtype //MDL-32827
1068 $DB->set_field('event', 'eventtype', 'site', array('eventtype' => '', 'courseid' => $SITE->id));
1069 $DB->set_field_select('event', 'eventtype', 'due', "eventtype = '' AND courseid != 0 AND groupid = 0 AND (modulename = 'assignment' OR modulename = 'assign')");
1070 $DB->set_field_select('event', 'eventtype', 'course', "eventtype = '' AND courseid != 0 AND groupid = 0");
1071 $DB->set_field_select('event', 'eventtype', 'group', "eventtype = '' AND groupid != 0");
1072 $DB->set_field_select('event', 'eventtype', 'user', "eventtype = '' AND userid != 0");
1074 // Main savepoint reached
1075 upgrade_main_savepoint(true, 2012072600.01);
1078 if ($oldversion < 2012080200.02) {
1079 // Drop obsolete question upgrade field that should have been added to the install.xml.
1080 $table = new xmldb_table('question');
1081 $field = new xmldb_field('oldquestiontextformat', XMLDB_TYPE_INTEGER, '2', null, XMLDB_NOTNULL, null, '0');
1083 if ($dbman->field_exists($table, $field)) {
1084 $dbman->drop_field($table, $field);
1087 upgrade_main_savepoint(true, 2012080200.02);
1090 if ($oldversion < 2012081400.01) {
1091 // Move the ability to disable blogs to its own setting MDL-25012.
1093 if (isset($CFG->bloglevel)) {
1094 // Only change settings if existing setting was set.
1095 if (empty($CFG->bloglevel)) {
1096 set_config('enableblogs', 0);
1097 // Now set the bloglevel to a valid setting as the disabled setting has been removed.
1098 // This prevents confusing results when users enable the blog system in future.
1099 set_config('bloglevel', BLOG_USER_LEVEL);
1100 } else {
1101 set_config('enableblogs', 1);
1105 // Main savepoint reached
1106 upgrade_main_savepoint(true, 2012081400.01);
1109 if ($oldversion < 2012081600.01) {
1110 // Delete removed setting - Google Maps API V2 will not work in 2013.
1111 unset_config('googlemapkey');
1112 upgrade_main_savepoint(true, 2012081600.01);
1115 if ($oldversion < 2012082300.01) {
1116 // Add more custom enrol fields.
1117 $table = new xmldb_table('enrol');
1118 $field = new xmldb_field('customint5', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'customint4');
1120 if (!$dbman->field_exists($table, $field)) {
1121 $dbman->add_field($table, $field);
1124 $field = new xmldb_field('customint6', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'customint5');
1125 if (!$dbman->field_exists($table, $field)) {
1126 $dbman->add_field($table, $field);
1129 $field = new xmldb_field('customint7', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'customint6');
1130 if (!$dbman->field_exists($table, $field)) {
1131 $dbman->add_field($table, $field);
1134 $field = new xmldb_field('customint8', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'customint7');
1135 if (!$dbman->field_exists($table, $field)) {
1136 $dbman->add_field($table, $field);
1139 $field = new xmldb_field('customchar3', XMLDB_TYPE_CHAR, '1333', null, null, null, null, 'customchar2');
1140 if (!$dbman->field_exists($table, $field)) {
1141 $dbman->add_field($table, $field);
1144 $field = new xmldb_field('customtext3', XMLDB_TYPE_TEXT, null, null, null, null, null, 'customtext2');
1145 if (!$dbman->field_exists($table, $field)) {
1146 $dbman->add_field($table, $field);
1149 $field = new xmldb_field('customtext4', XMLDB_TYPE_TEXT, null, null, null, null, null, 'customtext3');
1150 if (!$dbman->field_exists($table, $field)) {
1151 $dbman->add_field($table, $field);
1154 // Main savepoint reached.
1155 upgrade_main_savepoint(true, 2012082300.01);
1158 if ($oldversion < 2012082300.02) {
1159 // Define field component to be added to groups_members
1160 $table = new xmldb_table('groups_members');
1161 $field = new xmldb_field('component', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null, 'timeadded');
1163 // Conditionally launch add field component
1164 if (!$dbman->field_exists($table, $field)) {
1165 $dbman->add_field($table, $field);
1168 // Define field itemid to be added to groups_members
1169 $field = new xmldb_field('itemid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'component');
1171 // Conditionally launch add field itemid
1172 if (!$dbman->field_exists($table, $field)) {
1173 $dbman->add_field($table, $field);
1176 // Main savepoint reached
1177 upgrade_main_savepoint(true, 2012082300.02);
1180 if ($oldversion < 2012090500.00) {
1181 $subquery = 'SELECT b.id FROM {blog_external} b where b.id = ' . $DB->sql_cast_char2int('{post}.content', true);
1182 $sql = 'DELETE FROM {post}
1183 WHERE {post}.module = \'blog_external\'
1184 AND NOT EXISTS (' . $subquery . ')
1185 AND ' . $DB->sql_isnotempty('post', 'uniquehash', false, false);
1186 $DB->execute($sql);
1187 upgrade_main_savepoint(true, 2012090500.00);
1190 if ($oldversion < 2012090700.01) {
1191 // Add a category field in the course_request table
1192 $table = new xmldb_table('course_request');
1193 $field = new xmldb_field('category', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, 0, 'summaryformat');
1194 if (!$dbman->field_exists($table, $field)) {
1195 $dbman->add_field($table, $field);
1198 // Main savepoint reached.
1199 upgrade_main_savepoint(true, 2012090700.01);
1202 if ($oldversion < 2012091700.00) {
1204 // Dropping screenreader field from user.
1205 $table = new xmldb_table('user');
1206 $field = new xmldb_field('screenreader');
1208 if ($dbman->field_exists($table, $field)) {
1209 $dbman->drop_field($table, $field);
1212 // Main savepoint reached.
1213 upgrade_main_savepoint(true, 2012091700.00);
1216 if ($oldversion < 2012092100.01) {
1217 // Some folders still have a sortorder set, which is used for main files but is not
1218 // supported by the folder resource. We reset the value here.
1219 $sql = 'UPDATE {files} SET sortorder = ? WHERE component = ? AND filearea = ? AND sortorder <> ?';
1220 $DB->execute($sql, array(0, 'mod_folder', 'content', 0));
1222 // Main savepoint reached.
1223 upgrade_main_savepoint(true, 2012092100.01);
1226 if ($oldversion < 2012092600.00) {
1227 // Define index idname (unique) to be added to tag
1228 $table = new xmldb_table('tag');
1229 $index = new xmldb_index('idname', XMLDB_INDEX_UNIQUE, array('id', 'name'));
1231 // Conditionally launch add index idname
1232 if (!$dbman->index_exists($table, $index)) {
1233 $dbman->add_index($table, $index);
1236 // Main savepoint reached
1237 upgrade_main_savepoint(true, 2012092600.00);
1240 if ($oldversion < 2012101500.01) {
1241 // Find all orphaned blog associations that might exist.
1242 $sql = "SELECT ba.id
1243 FROM {blog_association} ba
1244 LEFT JOIN {post} p
1245 ON p.id = ba.blogid
1246 WHERE p.id IS NULL";
1247 $orphanedrecordids = $DB->get_records_sql($sql);
1248 // Now delete these associations.
1249 foreach ($orphanedrecordids as $orphanedrecord) {
1250 $DB->delete_records('blog_association', array('id' => $orphanedrecord->id));
1253 upgrade_main_savepoint(true, 2012101500.01);
1256 if ($oldversion < 2012101800.02) {
1257 // Renaming backups using previous file naming convention.
1258 upgrade_rename_old_backup_files_using_shortname();
1260 // Main savepoint reached.
1261 upgrade_main_savepoint(true, 2012101800.02);
1264 if ($oldversion < 2012103001.00) {
1265 // create new event_subscriptions table
1266 $table = new xmldb_table('event_subscriptions');
1267 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1268 $table->add_field('url', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
1269 $table->add_field('courseid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1270 $table->add_field('groupid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1271 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1272 $table->add_field('pollinterval', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1273 $table->add_field('lastupdated', XMLDB_TYPE_INTEGER, '10', null, null, null, null);
1274 $table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
1275 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1276 if (!$dbman->table_exists($table)) {
1277 $dbman->create_table($table);
1279 // Main savepoint reached
1280 upgrade_main_savepoint(true, 2012103001.00);
1283 if ($oldversion < 2012103002.00) {
1284 // Add subscription field to the event table
1285 $table = new xmldb_table('event');
1286 $field = new xmldb_field('subscriptionid', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'timemodified');
1288 // Conditionally launch add field subscriptionid
1289 if (!$dbman->field_exists($table, $field)) {
1290 $dbman->add_field($table, $field);
1292 upgrade_main_savepoint(true, 2012103002.00);
1295 if ($oldversion < 2012103003.00) {
1296 // Fix uuid field in event table to match RFC-2445 UID property
1297 $table = new xmldb_table('event');
1298 $field = new xmldb_field('uuid', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null, 'visible');
1299 if ($dbman->field_exists($table, $field)) {
1300 // Changing precision of field uuid on table event to (255)
1301 $dbman->change_field_precision($table, $field);
1303 // Main savepoint reached
1304 upgrade_main_savepoint(true, 2012103003.00);
1307 if ($oldversion < 2012110200.00) {
1309 // Define table course_format_options to be created
1310 $table = new xmldb_table('course_format_options');
1312 // Adding fields to table course_format_options
1313 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1314 $table->add_field('courseid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
1315 $table->add_field('format', XMLDB_TYPE_CHAR, '21', null, XMLDB_NOTNULL, null, null);
1316 $table->add_field('sectionid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'format');
1317 $table->add_field('name', XMLDB_TYPE_CHAR, '100', null, XMLDB_NOTNULL, null, null);
1318 $table->add_field('value', XMLDB_TYPE_TEXT, null, null, null, null, null);
1320 // Adding keys to table course_format_options
1321 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1322 $table->add_key('courseid', XMLDB_KEY_FOREIGN, array('courseid'), 'course', array('id'));
1324 // Adding indexes to table course_format_options
1325 $table->add_index('formatoption', XMLDB_INDEX_UNIQUE, array('courseid', 'format', 'sectionid', 'name'));
1327 // Conditionally launch create table for course_format_options
1328 if (!$dbman->table_exists($table)) {
1329 $dbman->create_table($table);
1332 // Changing type of field format on table course to char with length 21
1333 $table = new xmldb_table('course');
1334 $field = new xmldb_field('format', XMLDB_TYPE_CHAR, '21', null, XMLDB_NOTNULL, null, 'topics', 'summaryformat');
1336 // Launch change of type for field format
1337 $dbman->change_field_type($table, $field);
1339 // Main savepoint reached
1340 upgrade_main_savepoint(true, 2012110200.00);
1343 if ($oldversion < 2012110201.00) {
1345 // Copy fields 'coursedisplay', 'numsections', 'hiddensections' from table {course}
1346 // to table {course_format_options} as the additional format options
1347 $fields = array();
1348 $table = new xmldb_table('course');
1349 foreach (array('coursedisplay', 'numsections', 'hiddensections') as $fieldname) {
1350 // first check that fields still exist
1351 $field = new xmldb_field($fieldname);
1352 if ($dbman->field_exists($table, $field)) {
1353 $fields[] = $fieldname;
1357 if (!empty($fields)) {
1358 $transaction = $DB->start_delegated_transaction();
1359 $rs = $DB->get_recordset_sql('SELECT id, format, '. join(',', $fields).'
1360 FROM {course}
1361 WHERE format <> ? AND format <> ?',
1362 array('scorm', 'social'));
1363 // (do not copy fields from scrom and social formats, we already know that they are not used)
1364 foreach ($rs as $rec) {
1365 foreach ($fields as $field) {
1366 try {
1367 $DB->insert_record('course_format_options',
1368 array(
1369 'courseid' => $rec->id,
1370 'format' => $rec->format,
1371 'sectionid' => 0,
1372 'name' => $field,
1373 'value' => $rec->$field
1375 } catch (dml_exception $e) {
1376 // index 'courseid,format,sectionid,name' violation
1377 // continue; the entry in course_format_options already exists, use it
1381 $rs->close();
1382 $transaction->allow_commit();
1384 // Drop fields from table course
1385 foreach ($fields as $fieldname) {
1386 $field = new xmldb_field($fieldname);
1387 $dbman->drop_field($table, $field);
1391 // Main savepoint reached
1392 upgrade_main_savepoint(true, 2012110201.00);
1395 if ($oldversion < 2012110700.01) {
1397 // Define field caller_component to be added to portfolio_log.
1398 $table = new xmldb_table('portfolio_log');
1399 $field = new xmldb_field('caller_component', XMLDB_TYPE_CHAR, '255', null, null, null, null, 'caller_file');
1401 // Conditionally launch add field caller_component.
1402 if (!$dbman->field_exists($table, $field)) {
1403 $dbman->add_field($table, $field);
1406 // Main savepoint reached.
1407 upgrade_main_savepoint(true, 2012110700.01);
1410 if ($oldversion < 2012111200.00) {
1412 // Define table temp_enroled_template to be created
1413 $table = new xmldb_table('temp_enroled_template');
1415 // Adding fields to table temp_enroled_template
1416 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1417 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1418 $table->add_field('courseid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1419 $table->add_field('roleid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null);
1421 // Adding keys to table temp_enroled_template
1422 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1424 // Adding indexes to table temp_enroled_template
1425 $table->add_index('userid', XMLDB_INDEX_NOTUNIQUE, array('userid'));
1426 $table->add_index('courseid', XMLDB_INDEX_NOTUNIQUE, array('courseid'));
1427 $table->add_index('roleid', XMLDB_INDEX_NOTUNIQUE, array('roleid'));
1429 // Conditionally launch create table for temp_enroled_template
1430 if (!$dbman->table_exists($table)) {
1431 $dbman->create_table($table);
1434 // Define table temp_log_template to be created
1435 $table = new xmldb_table('temp_log_template');
1437 // Adding fields to table temp_log_template
1438 $table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
1439 $table->add_field('userid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1440 $table->add_field('course', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
1441 $table->add_field('action', XMLDB_TYPE_CHAR, '40', null, XMLDB_NOTNULL, null, null);
1443 // Adding keys to table temp_log_template
1444 $table->add_key('primary', XMLDB_KEY_PRIMARY, array('id'));
1446 // Adding indexes to table temp_log_template
1447 $table->add_index('action', XMLDB_INDEX_NOTUNIQUE, array('action'));
1448 $table->add_index('course', XMLDB_INDEX_NOTUNIQUE, array('course'));
1449 $table->add_index('user', XMLDB_INDEX_NOTUNIQUE, array('userid'));
1450 $table->add_index('usercourseaction', XMLDB_INDEX_NOTUNIQUE, array('userid', 'course', 'action'));
1452 // Conditionally launch create table for temp_log_template
1453 if (!$dbman->table_exists($table)) {
1454 $dbman->create_table($table);
1457 // Main savepoint reached
1458 upgrade_main_savepoint(true, 2012111200.00);
1461 if ($oldversion < 2012111200.01) {
1462 // Force the rebuild of the cache of every courses, some cached information could contain wrong icon references.
1463 $DB->execute('UPDATE {course} set modinfo = ?, sectioncache = ?', array(null, null));
1465 // Main savepoint reached.
1466 upgrade_main_savepoint(true, 2012111200.01);
1469 if ($oldversion < 2012111601.01) {
1470 // Clea up after old shared memory caching support.
1471 unset_config('cachetype');
1472 unset_config('rcache');
1473 unset_config('rcachettl');
1474 unset_config('intcachemax');
1475 unset_config('memcachedhosts');
1476 unset_config('memcachedpconn');
1478 // Main savepoint reached.
1479 upgrade_main_savepoint(true, 2012111601.01);
1482 if ($oldversion < 2012112100.00) {
1484 // Define field eventtype to be added to event_subscriptions.
1485 $table = new xmldb_table('event_subscriptions');
1486 $field = new xmldb_field('eventtype', XMLDB_TYPE_CHAR, '20', null, XMLDB_NOTNULL, null, null, 'userid');
1488 // Conditionally launch add field eventtype.
1489 if (!$dbman->field_exists($table, $field)) {
1490 $dbman->add_field($table, $field);
1493 // Main savepoint reached.
1494 upgrade_main_savepoint(true, 2012112100.00);
1497 // Moodle v2.4.0 release upgrade line
1498 // Put any upgrade step following this
1501 if ($oldversion < 2012120300.01) {
1502 // Make sure site-course has format='site' //MDL-36840
1504 if ($SITE->format !== 'site') {
1505 $DB->set_field('course', 'format', 'site', array('id' => $SITE->id));
1506 $SITE->format = 'site';
1509 // Main savepoint reached
1510 upgrade_main_savepoint(true, 2012120300.01);
1513 if ($oldversion < 2012120300.04) {
1514 // Remove "_utf8" suffix from all langs in course table.
1515 $langs = $DB->get_records_sql("SELECT DISTINCT lang FROM {course} WHERE lang LIKE ?", array('%_utf8'));
1517 foreach ($langs as $lang=>$unused) {
1518 $newlang = str_replace('_utf8', '', $lang);
1519 $sql = "UPDATE {course} SET lang = :newlang WHERE lang = :lang";
1520 $DB->execute($sql, array('newlang'=>$newlang, 'lang'=>$lang));
1523 // Main savepoint reached.
1524 upgrade_main_savepoint(true, 2012120300.04);
1527 if ($oldversion < 2012120301.09) {
1528 // Add the site identifier to the cache config's file.
1529 $siteidentifier = $DB->get_field('config', 'value', array('name' => 'siteidentifier'));
1530 cache_helper::update_site_identifier($siteidentifier);
1532 // Main savepoint reached.
1533 upgrade_main_savepoint(true, 2012120301.09);
1536 if ($oldversion < 2012120301.10) {
1537 // Fixing possible wrong MIME types for SMART Notebook files.
1538 $extensions = array('%.gallery', '%.galleryitem', '%.gallerycollection', '%.nbk', '%.notebook', '%.xbk');
1539 $select = $DB->sql_like('filename', '?', false);
1540 foreach ($extensions as $extension) {
1541 $DB->set_field_select(
1542 'files',
1543 'mimetype',
1544 'application/x-smarttech-notebook',
1545 $select,
1546 array($extension)
1550 // Main savepoint reached.
1551 upgrade_main_savepoint(true, 2012120301.10);
1554 if ($oldversion < 2012120301.11) {
1555 // Retrieve the list of course_sections as a recordset to save memory
1556 $coursesections = $DB->get_recordset('course_sections', null, 'course, id', 'id, course, sequence');
1557 foreach ($coursesections as $coursesection) {
1558 // Retrieve all of the actual modules in this course and section combination to reduce DB calls
1559 $actualsectionmodules = $DB->get_records('course_modules',
1560 array('course' => $coursesection->course, 'section' => $coursesection->id), '', 'id, section');
1562 // Break out the current sequence so that we can compare it
1563 $currentsequence = explode(',', $coursesection->sequence);
1564 $newsequence = array();
1566 // Check each of the modules in the current sequence
1567 foreach ($currentsequence as $module) {
1568 if (isset($actualsectionmodules[$module])) {
1569 $newsequence[] = $module;
1570 // We unset the actualsectionmodules so that we don't get duplicates and that we can add orphaned
1571 // modules later
1572 unset($actualsectionmodules[$module]);
1576 // Append any modules which have somehow been orphaned
1577 foreach ($actualsectionmodules as $module) {
1578 $newsequence[] = $module->id;
1581 // Piece it all back together
1582 $sequence = implode(',', $newsequence);
1584 // Only update if there have been changes
1585 if ($sequence !== $coursesection->sequence) {
1586 $coursesection->sequence = $sequence;
1587 $DB->update_record('course_sections', $coursesection);
1589 // And clear the sectioncache and modinfo cache - they'll be regenerated on next use
1590 $course = new stdClass();
1591 $course->id = $coursesection->course;
1592 $course->sectioncache = null;
1593 $course->modinfo = null;
1594 $DB->update_record('course', $course);
1597 $coursesections->close();
1599 // Main savepoint reached.
1600 upgrade_main_savepoint(true, 2012120301.11);
1603 if ($oldversion < 2012120301.13) {
1604 // Delete entries regarding invalid 'interests' option which breaks course.
1605 $DB->delete_records('course_sections_avail_fields', array('userfield' => 'interests'));
1606 $DB->delete_records('course_modules_avail_fields', array('userfield' => 'interests'));
1607 // Clear course cache (will be rebuilt on first visit) in case of changes to these.
1608 $DB->execute('UPDATE {course} set modinfo = ?, sectioncache = ?', array(null, null));
1610 upgrade_main_savepoint(true, 2012120301.13);
1613 if ($oldversion < 2012120302.01) {
1614 // Retrieve the list of course_sections as a recordset to save memory.
1615 // This is to fix a regression caused by MDL-37939.
1616 // In this case the upgrade step is fixing records where:
1617 // The data in course_sections.sequence contains the correct module id
1618 // The section field for on the course modules table may have been updated to point to the incorrect id.
1620 // This query is looking for sections where the sequence is not in sync with the course_modules table.
1621 // The syntax for the like query is looking for a value in a comma separated list.
1622 // It adds a comma to either site of the list and then searches for LIKE '%,id,%'.
1623 $sequenceconcat = $DB->sql_concat("','", 's.sequence', "','");
1624 $moduleconcat = $DB->sql_concat("'%,'", 'cm.id', "',%'");
1625 $sql = 'SELECT s2.id, s2.course, s2.sequence
1626 FROM {course_sections} s2
1627 JOIN(
1628 SELECT DISTINCT s.id
1629 FROM
1630 {course_modules} cm
1631 JOIN {course_sections} s
1633 cm.course = s.course
1634 WHERE cm.section != s.id AND ' . $sequenceconcat . ' LIKE ' . $moduleconcat . '
1636 ON s2.id = d.id';
1637 $coursesections = $DB->get_recordset_sql($sql);
1639 foreach ($coursesections as $coursesection) {
1640 // Retrieve all of the actual modules in this course and section combination to reduce DB calls.
1641 $actualsectionmodules = $DB->get_records('course_modules',
1642 array('course' => $coursesection->course, 'section' => $coursesection->id), '', 'id, section');
1644 // Break out the current sequence so that we can compare it.
1645 $currentsequence = explode(',', $coursesection->sequence);
1646 $orphanlist = array();
1648 // Check each of the modules in the current sequence.
1649 foreach ($currentsequence as $cmid) {
1650 if (!empty($cmid) && !isset($actualsectionmodules[$cmid])) {
1651 $orphanlist[] = $cmid;
1655 if (!empty($orphanlist)) {
1656 list($sql, $params) = $DB->get_in_or_equal($orphanlist, SQL_PARAMS_NAMED);
1657 $sql = "id $sql";
1659 $DB->set_field_select('course_modules', 'section', $coursesection->id, $sql, $params);
1661 // And clear the sectioncache and modinfo cache - they'll be regenerated on next use.
1662 $course = new stdClass();
1663 $course->id = $coursesection->course;
1664 $course->sectioncache = null;
1665 $course->modinfo = null;
1666 $DB->update_record('course', $course);
1669 $coursesections->close();
1671 upgrade_main_savepoint(true, 2012120302.01);
1674 if ($oldversion < 2012120303.02) {
1675 // Fixing possible wrong MIME type for MIME HTML (MHTML) files.
1676 $extensions = array('%.mht', '%.mhtml');
1677 $select = $DB->sql_like('filename', '?', false);
1678 foreach ($extensions as $extension) {
1679 $DB->set_field_select(
1680 'files',
1681 'mimetype',
1682 'message/rfc822',
1683 $select,
1684 array($extension)
1687 upgrade_main_savepoint(true, 2012120303.02);
1690 if ($oldversion < 2012120303.06) {
1691 // MDL-29877 Some bad restores created grade items with no category information.
1692 $sql = "UPDATE {grade_items}
1693 SET categoryid = courseid
1694 WHERE itemtype <> 'course' and itemtype <> 'category'
1695 AND categoryid IS NULL";
1696 $DB->execute($sql);
1697 upgrade_main_savepoint(true, 2012120303.06);
1700 if ($oldversion < 2012120303.08) {
1701 require_once($CFG->dirroot.'/cache/locallib.php');
1702 // The features bin needs updating.
1703 cache_config_writer::update_default_config_stores();
1704 // Main savepoint reached.
1705 upgrade_main_savepoint(true, 2012120303.08);
1708 if ($oldversion < 2012120303.09) {
1709 // Adding index to unreadmessageid field of message_working table (MDL-34933)
1710 $table = new xmldb_table('message_working');
1711 $index = new xmldb_index('unreadmessageid_idx', XMLDB_INDEX_NOTUNIQUE, array('unreadmessageid'));
1713 // Conditionally launch add index unreadmessageid
1714 if (!$dbman->index_exists($table, $index)) {
1715 $dbman->add_index($table, $index);
1718 // Main savepoint reached.
1719 upgrade_main_savepoint(true, 2012120303.09);
1722 if ($oldversion < 2012120304.01) {
1723 // Fix incorrect cc-nc url. Unfortunately the license 'plugins' do
1724 // not give a mechanism to do this.
1726 $sql = "UPDATE {license}
1727 SET source = :url, version = :newversion
1728 WHERE shortname = :shortname AND version = :oldversion";
1730 $params = array(
1731 'url' => 'http://creativecommons.org/licenses/by-nc/3.0/',
1732 'shortname' => 'cc-nc',
1733 'newversion' => '2013051500',
1734 'oldversion' => '2010033100'
1737 $DB->execute($sql, $params);
1739 // Main savepoint reached.
1740 upgrade_main_savepoint(true, 2012120304.01);
1743 if ($oldversion < 2012120304.06) {
1744 // Clean up old tokens which haven't been deleted.
1745 $DB->execute("DELETE FROM {user_private_key} WHERE NOT EXISTS
1746 (SELECT 'x' FROM {user} WHERE deleted = 0 AND id = userid)");
1748 // Main savepoint reached.
1749 upgrade_main_savepoint(true, 2012120304.06);
1752 if ($oldversion < 2012120304.09) {
1754 // Remove orphan repository instances.
1755 $sql = 'SELECT contextid FROM {repository_instances} ri
1756 WHERE NOT EXISTS (
1757 SELECT id FROM {context} c
1758 WHERE c.id = ri.contextid)';
1759 $ids = $DB->get_fieldset_sql($sql);
1760 $DB->delete_records_list('repository_instances', 'contextid', $ids);
1762 // Main savepoint reached.
1763 upgrade_main_savepoint(true, 2012120304.09);
1766 return true;