diff options
author | Friendika <info@friendika.com> | 2010-12-14 14:15:31 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-14 14:15:31 -0800 |
commit | 78d8bcbc6023ae62d84c77cd91619bf0f016d376 (patch) | |
tree | 515ac31e57505a76bfc21bc7a5503bdad65974b4 /update.php | |
parent | 46bc84b2f26fd1370a89a8954d743f23925a4a11 (diff) | |
download | volse-hubzilla-78d8bcbc6023ae62d84c77cd91619bf0f016d376.tar.gz volse-hubzilla-78d8bcbc6023ae62d84c77cd91619bf0f016d376.tar.bz2 volse-hubzilla-78d8bcbc6023ae62d84c77cd91619bf0f016d376.zip |
personal config storage, template the vcard profile, logging failed uri's to help track down transient dreamhost issues
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/update.php b/update.php index 92b240798..b3fab6720 100644 --- a/update.php +++ b/update.php @@ -228,3 +228,12 @@ function update_1021() { q("ALTER TABLE `item` ADD `private` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `deny_gid` "); } +function update_1022() { + q("CREATE TABLE `pconfig` ( + `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , + `uid` INT NOT NULL DEFAULT '0', + `cat` CHAR( 255 ) NOT NULL , + `k` CHAR( 255 ) NOT NULL , + `v` MEDIUMTEXT NOT NULL + ) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci "); +} |