diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-21 04:53:43 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-21 04:53:43 -0700 |
commit | 5edee3c4d1f84c07c1c54775072601188075a542 (patch) | |
tree | c3b8167923bbb4c77eee9a727b38b1c93ad3d26b /update.php | |
parent | 39b19cd0890754c947414ed9eb6d688e12702e0d (diff) | |
download | volse-hubzilla-5edee3c4d1f84c07c1c54775072601188075a542.tar.gz volse-hubzilla-5edee3c4d1f84c07c1c54775072601188075a542.tar.bz2 volse-hubzilla-5edee3c4d1f84c07c1c54775072601188075a542.zip |
magic-envelope verification, status.net appears to do it wrong.
Ultimately we need to do it right (or why bother having a spec?),
and fallback to doing it wrong if we're talking to a broken system - which
ironically seems to include most of the federated social web projects.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update.php b/update.php index 3785cad2b..65713583b 100644 --- a/update.php +++ b/update.php @@ -75,4 +75,8 @@ function update_1008() { function update_1009() { q("ALTER TABLE `user` ADD `allow_location` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `default-location` "); -}
\ No newline at end of file +} + +function update_1010() { + q("ALTER TABLE `contact` ADD `lrdd` CHAR( 255 ) NOT NULL AFTER `url` "); +} |