diff options
author | Friendika <info@friendika.com> | 2010-11-14 15:17:27 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-14 15:17:27 -0800 |
commit | eae34f323b85d4126c81eda679d1350d171fd8da (patch) | |
tree | 651b53e1057f87301ad49330bfca0b15c027328e /update.php | |
parent | 0851669b39db770e62374551c9394f0f3a652314 (diff) | |
download | volse-hubzilla-eae34f323b85d4126c81eda679d1350d171fd8da.tar.gz volse-hubzilla-eae34f323b85d4126c81eda679d1350d171fd8da.tar.bz2 volse-hubzilla-eae34f323b85d4126c81eda679d1350d171fd8da.zip |
add openid slot to db
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 eb3231b56..7ee27213d 100644 --- a/update.php +++ b/update.php @@ -133,4 +133,9 @@ function update_1014() { function update_1015() { q("ALTER TABLE `item` CHANGE `body` `body` mediumtext NOT NULL"); -}
\ No newline at end of file +} + +function update_1016() { + q("ALTER TABLE `user` ADD `openid` CHAR( 255 ) NOT NULL AFTER `email` "); +} + |