diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/update.php b/update.php index 7293e1b98..6eade22f7 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1113 ); +define( 'UPDATE_VERSION' , 1114 ); /** * @@ -966,4 +966,9 @@ function update_1112() { q("ALTER TABLE `notify` ADD INDEX ( `type` ), ADD INDEX ( `uid`), ADD INDEX (`seen`), ADD INDEX (`date`) "); -}
\ No newline at end of file +} + +function update_1113() { + q("ALTER TABLE `notify` ADD `verb` CHAR( 255 ) NOT NULL , +ADD `otype` CHAR( 16 ) NOT NULL"); +} |