Skip to content

Commit

Permalink
Added an index on courses for the category
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Aug 21, 2003
1 parent 8d86ba6 commit 3052e77
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/db/mysql.php
Expand Up @@ -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;

}
Expand Down
3 changes: 2 additions & 1 deletion lib/db/mysql.sql
Expand Up @@ -51,7 +51,8 @@ CREATE TABLE `prefix_course` (
`visible` int(10) unsigned NOT NULL default '1',
`timecreated` int(10) unsigned NOT NULL default '0',
`timemodified` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
PRIMARY KEY (`id`),
KEY `category` (`category`)
) TYPE=MyISAM;
# --------------------------------------------------------

Expand Down
4 changes: 4 additions & 0 deletions lib/db/postgres7.php
Expand Up @@ -238,6 +238,10 @@ function main_upgrade($oldversion=0) {
table_column("course", "", "showgrades", "integer", "2", "unsigned", "1", "", "format");
}

if ($oldversion < 2003082101) {
execute_sql(" CREATE INDEX {$CFG->prefix}course_category_idx ON {$CFG->prefix}course (category) ");
}

return $result;
}
?>
2 changes: 2 additions & 0 deletions lib/db/postgres7.sql
Expand Up @@ -30,6 +30,8 @@ CREATE TABLE prefix_course (
timemodified integer NOT NULL default '0'
);

CREATE INDEX prefix_course_category_idx ON prefix_course (category);

CREATE TABLE prefix_course_categories (
id SERIAL PRIMARY KEY,
name varchar(255) NOT NULL default ''
Expand Down

0 comments on commit 3052e77

Please sign in to comment.