diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/update.php b/update.php index 723f12c1a..5d5190095 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1094 ); +define( 'UPDATE_VERSION' , 1095 ); /** * @@ -786,4 +786,8 @@ function update_1093() { q("ALTER TABLE `group` ADD `visible` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `uid` "); -}
\ No newline at end of file +} + +function update_1094() { + q("ALTER TABLE `item` ADD `postopts` TEXT NOT NULL AFTER `target` "); +} |