diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-04-07 12:49:32 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-04-07 12:49:32 +0000 |
| commit | 275032c2f4da575362eccf88edb28817d80f7aee (patch) | |
| tree | 8c509a8d77426048b34dbaa594e967aca6360cd9 /admin | |
| parent | 8c7e0cdb073d829698ea448b87e5c97901e0833b (diff) | |
| download | search-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.php | 8 |
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 ); |
