diff options
author | friendica <info@friendica.com> | 2011-12-06 00:16:13 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-06 00:16:13 -0800 |
commit | be8e9d36160d8a45bb11c3ab9ecdbf0c4f5cdf7d (patch) | |
tree | 9bad78a28b7c7fc77b25741018d4fda5f11eb9d3 /update.php | |
parent | 47f369e052d296f4a744c1508efc58f6168b7e8b (diff) | |
download | volse-hubzilla-be8e9d36160d8a45bb11c3ab9ecdbf0c4f5cdf7d.tar.gz volse-hubzilla-be8e9d36160d8a45bb11c3ab9ecdbf0c4f5cdf7d.tar.bz2 volse-hubzilla-be8e9d36160d8a45bb11c3ab9ecdbf0c4f5cdf7d.zip |
d* pm
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` ) "); +} + |