diff options
author | Friendika <info@friendika.com> | 2011-04-15 23:40:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-15 23:40:43 -0700 |
commit | 27cbb830a7bd72f13181acc5999a6bed4f74f5ae (patch) | |
tree | 36012bdb41c1972ac1c274e3594fa72cc8520781 /update.php | |
parent | 158b65894a086b36e383c2a41e494eb1d45fdb4a (diff) | |
download | volse-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.php | 9 |
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` "); +} + |