aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-15 23:40:43 -0700
committerFriendika <info@friendika.com>2011-04-15 23:40:43 -0700
commit27cbb830a7bd72f13181acc5999a6bed4f74f5ae (patch)
tree36012bdb41c1972ac1c274e3594fa72cc8520781 /update.php
parent158b65894a086b36e383c2a41e494eb1d45fdb4a (diff)
downloadvolse-hubzilla-27cbb830a7bd72f13181acc5999a6bed4f74f5ae.tar.gz
volse-hubzilla-27cbb830a7bd72f13181acc5999a6bed4f74f5ae.tar.bz2
volse-hubzilla-27cbb830a7bd72f13181acc5999a6bed4f74f5ae.zip
more work on email contacts
Diffstat (limited to 'update.php')
-rw-r--r--update.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/update.php b/update.php
index 763b8f267..35f4364e4 100644
--- a/update.php
+++ b/update.php
@@ -460,3 +460,12 @@ function update_1050() {
) ENGINE = MYISAM ");
}
+
+function update_1051() {
+ q("ALTER TABLE `mailacct` ADD `port` INT NOT NULL AFTER `server` ,
+ ADD `ssltype` CHAR( 16 ) NOT NULL AFTER `port` ,
+ ADD `mailbox` CHAR( 255 ) NOT NULL AFTER `ssltype` ");
+
+ q("ALTER TABLE `contact` ADD `addr` CHAR( 255 ) NOT NULL AFTER `url` ");
+}
+