diff options
author | Friendika <info@friendika.com> | 2011-06-21 18:03:54 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-21 18:03:54 -0700 |
commit | a51fc14e69c626aa683db4d5e45a7ff6106752a7 (patch) | |
tree | 75146e7acf078c39a9d78b857c242e8f95d2c7da /update.php | |
parent | e6086e23634939b3354c6b6db59d596c6e2d7ca4 (diff) | |
download | volse-hubzilla-a51fc14e69c626aa683db4d5e45a7ff6106752a7.tar.gz volse-hubzilla-a51fc14e69c626aa683db4d5e45a7ff6106752a7.tar.bz2 volse-hubzilla-a51fc14e69c626aa683db4d5e45a7ff6106752a7.zip |
structures for friend suggestions
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 595395673..8edd2aa92 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1065 ); +define( 'UPDATE_VERSION' , 1066 ); /** * @@ -524,3 +524,8 @@ function update_1063() { function update_1064() { q("ALTER TABLE `item` ADD `app` CHAR( 255 ) NOT NULL AFTER `body` "); } + +function update_1065() { + q("ALTER TABLE `intro` ADD `fid` INT NOT NULL DEFAULT '0' AFTER `uid`"); +} + |