personal config storage, template the vcard profile, logging failed uri's to help track down transient dreamhost issues
This commit is contained in:
parent
46bc84b2f2
commit
78d8bcbc60
7 changed files with 266 additions and 7 deletions
|
@ -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 ");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue