diff options
author | Friendika <info@friendika.com> | 2011-06-26 05:42:32 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-26 05:42:32 -0700 |
commit | 22e89220889759256b48323ee1a66257e2121ef7 (patch) | |
tree | 0e7940e9f16444fbc608c3f0f35586205c3568e6 /update.php | |
parent | c9604ef57839e16839e69aa23a21ed8921409343 (diff) | |
download | volse-hubzilla-22e89220889759256b48323ee1a66257e2121ef7.tar.gz volse-hubzilla-22e89220889759256b48323ee1a66257e2121ef7.tar.bz2 volse-hubzilla-22e89220889759256b48323ee1a66257e2121ef7.zip |
friend suggest structures, cont.
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 13187ac51..409e5d48e 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1067 ); +define( 'UPDATE_VERSION' , 1068 ); /** * @@ -535,4 +535,9 @@ function update_1066() { q("ALTER TABLE `item` ADD INDEX ( `received` ) "); $r = q("UPDATE `item` SET `received` = `edited` WHERE 1"); -}
\ No newline at end of file +} + +function update_1067() { + q("ALTER TABLE `ffinder` ADD `type` CHAR( 16 ) NOT NULL AFTER `id` , + ADD `note` TEXT NOT NULL AFTER `type` "); +} |