diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/update.php b/update.php index d94bf82d1..ca8874e82 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1109 ); +define( 'UPDATE_VERSION' , 1110 ); /** * @@ -928,3 +928,12 @@ function update_1108() { ADD INDEX ( `hidden` ) "); } + +function update_1109() { + q("ALTER TABLE `conv` ADD `creator` CHAR( 255 ) NOT NULL , + ADD `created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', + ADD `updated` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', + ADD `subject` MEDIUMTEXT NOT NULL, + ADD INDEX ( `created` ), ADD INDEX ( `updated` ) "); +} + |