diff options
author | Friendika <info@friendika.com> | 2011-10-01 23:19:20 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-01 23:19:20 -0700 |
commit | 7d7a1498118f0101f31b711b30d2e21533bb01fe (patch) | |
tree | 7241e94a8c9ef71bc49ec38ff26dfb937dc5095d /update.php | |
parent | 96e735fdd27bbf18a3a2d916882e574ec22fea21 (diff) | |
download | volse-hubzilla-7d7a1498118f0101f31b711b30d2e21533bb01fe.tar.gz volse-hubzilla-7d7a1498118f0101f31b711b30d2e21533bb01fe.tar.bz2 volse-hubzilla-7d7a1498118f0101f31b711b30d2e21533bb01fe.zip |
db updates for server batch key caching, group visibility
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/update.php b/update.php index 0dd599e83..723f12c1a 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1093 ); +define( 'UPDATE_VERSION' , 1094 ); /** * @@ -773,4 +773,17 @@ function update_1091() { function update_1092() { q("ALTER TABLE `user` ADD INDEX ( `login_date` ) "); q("ALTER TABLE `user` ADD INDEX ( `account_expired` ) "); +} + +function update_1093() { + q("CREATE TABLE IF NOT EXISTS `fserver` ( + `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , + `server` CHAR( 255 ) NOT NULL , + `posturl` CHAR( 255 ) NOT NULL , + `key` TEXT NOT NULL, + INDEX ( `server` ) + ) ENGINE = MYISAM "); + + q("ALTER TABLE `group` ADD `visible` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `uid` "); + }
\ No newline at end of file |