mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Added an index on courses for the category
This commit is contained in:
parent
8d86ba60a0
commit
3052e775c8
4 changed files with 12 additions and 1 deletions
|
@ -494,6 +494,10 @@ function main_upgrade($oldversion=0) {
|
|||
table_column("course", "", "showgrades", "integer", "2", "unsigned", "1", "", "format");
|
||||
}
|
||||
|
||||
if ($oldversion < 2003082101) {
|
||||
execute_sql(" ALTER TABLE `{$CFG->prefix}course` ADD INDEX category (category) ");
|
||||
}
|
||||
|
||||
return $result;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue