diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 3d7b31813..f94e78d72 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1086 ); +define( 'UPDATE_VERSION' , 1087 ); /** * @@ -721,3 +721,8 @@ function update_1085() { INDEX ( `term` ) ) ENGINE = MYISAM "); } + +function update_1086() { + q("ALTER TABLE `item` ADD `bookmark` tinyint(1) NOT NULL DEFAULT '0' AFTER `starred` "); +} + |