diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/update.php b/update.php index c85962691..8f1cee75b 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1098 ); +define( 'UPDATE_VERSION' , 1099 ); /** * @@ -806,6 +806,29 @@ function update_1097() { ADD INDEX (`created`), ADD INDEX (`last`), ADD INDEX (`network`), - ADD INDEX (`batch`) "); + ADD INDEX (`batch`) + "); } +function update_1098() { + q("ALTER TABLE `contact` + ADD INDEX (`network`), + ADD INDEX (`name`), + ADD INDEX (`nick`), + ADD INDEX (`attag`), + ADD INDEX (`url`), + ADD INDEX (`addr`), + ADD INDEX (`batch`) + "); +} + + + + + + + + + + + |