diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update.php b/update.php index 6e7b5f2c1..d94bf82d1 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1108 ); +define( 'UPDATE_VERSION' , 1109 ); /** * @@ -923,4 +923,8 @@ function update_1107() { } +function update_1108() { + q("ALTER TABLE `contact` ADD `hidden` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `writable` , +ADD INDEX ( `hidden` ) "); +} |