summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-04-07 12:49:32 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-04-07 12:49:32 +0000
commit275032c2f4da575362eccf88edb28817d80f7aee (patch)
tree8c509a8d77426048b34dbaa594e967aca6360cd9 /admin
parent8c7e0cdb073d829698ea448b87e5c97901e0833b (diff)
downloadsearch-275032c2f4da575362eccf88edb28817d80f7aee.tar.gz
search-275032c2f4da575362eccf88edb28817d80f7aee.tar.bz2
search-275032c2f4da575362eccf88edb28817d80f7aee.zip
adjust indecies to new table names
Diffstat (limited to 'admin')
-rw-r--r--admin/schema_inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 7d512a8..1405526 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -35,10 +35,10 @@ foreach( array_keys( $tables ) AS $tableName ) {
}
$indices = array (
- 'searchidx_last_update_idx' => array( 'table' => 'searchindex', 'cols' => 'last_update', 'opts' => NULL ),
- 'searchidx_word_idx' => array( 'table' => 'searchindex', 'cols' => 'searchword', 'opts' => NULL ),
- 'searchidx_con_idx' => array( 'table' => 'searchindex', 'cols' => 'content_id', 'opts' => NULL ),
- 'searchsyl_last_used_idx' => array( 'table' => 'searchsyllable', 'cols' => 'last_used', 'opts' => NULL )
+ 'searchidx_last_update_idx' => array( 'table' => 'search_index', 'cols' => 'last_update', 'opts' => NULL ),
+ 'searchidx_word_idx' => array( 'table' => 'search_index', 'cols' => 'searchword', 'opts' => NULL ),
+ 'searchidx_con_idx' => array( 'table' => 'search_index', 'cols' => 'content_id', 'opts' => NULL ),
+ 'searchsyl_last_used_idx' => array( 'table' => 'search_syllable', 'cols' => 'last_used', 'opts' => NULL )
);
$gBitInstaller->registerSchemaIndexes( SEARCH_PKG_NAME, $indices );