Skip to content

Commit

Permalink
Fix #10963: Add indexes to project hierarchy table
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Oct 6, 2009
1 parent ee8a6e3 commit 520c3e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions admin/schema.php
Expand Up @@ -599,3 +599,5 @@ function installer_db_now() {
$upgrade[] = Array( 'DropColumnSQL', Array( db_get_table( 'user_pref'), "advanced_report" ) );
$upgrade[] = Array( 'DropColumnSQL', Array( db_get_table( 'user_pref'), "advanced_view" ) );
$upgrade[] = Array( 'DropColumnSQL', Array( db_get_table( 'user_pref'), "advanced_update" ) );
$upgrade[] = Array( 'CreateIndexSQL', Array( 'idx_project_hierarchy_child_id', db_get_table( 'project_hierarchy' ), 'child_id' ) );
$upgrade[] = Array( 'CreateIndexSQL', Array( 'idx_project_hierarchy_parent_id', db_get_table( 'project_hierarchy' ), 'parent_id' ) );

0 comments on commit 520c3e7

Please sign in to comment.