diff options
author | Friendika <info@friendika.com> | 2011-06-08 21:06:02 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-08 21:06:02 -0700 |
commit | df8ac668b800ecf64ab2c240678eb87b225cb513 (patch) | |
tree | 7fcfe4b55fb282dfd95bd8500ad92518c7a4acaa /update.php | |
parent | a10abd4860ee2e34b197fd7c1bba295cd35c1a9b (diff) | |
download | volse-hubzilla-df8ac668b800ecf64ab2c240678eb87b225cb513.tar.gz volse-hubzilla-df8ac668b800ecf64ab2c240678eb87b225cb513.tar.bz2 volse-hubzilla-df8ac668b800ecf64ab2c240678eb87b225cb513.zip |
more calendar work, undo strict_privacy flag to use different approach
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 dfc5f88c9..e1bc73619 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1062 ); +define( 'UPDATE_VERSION' , 1063 ); /** * @@ -513,3 +513,8 @@ function update_1060() { function update_1061() { q("ALTER TABLE `event` ADD `nofinish` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `type` "); } + +function update_1062() { + q("ALTER TABLE `user` ADD `prvnets` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `page-flags` "); +} + |