diff options
author | zotlabs <mike@macgirvin.com> | 2017-04-26 19:47:05 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-04-27 14:33:01 +0200 |
commit | 2778e63d6c51b5ca77d9a309ddb7390b239fa491 (patch) | |
tree | 1813c5dd6d98c211dfcc734da902c45b6dee74fc /install/update.php | |
parent | d16fbda0f8c97b504c20cbcfbd07031ef0fa62fe (diff) | |
download | volse-hubzilla-2778e63d6c51b5ca77d9a309ddb7390b239fa491.tar.gz volse-hubzilla-2778e63d6c51b5ca77d9a309ddb7390b239fa491.tar.bz2 volse-hubzilla-2778e63d6c51b5ca77d9a309ddb7390b239fa491.zip |
issues from hubzilla:#737
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php index 84f1a799c..ce65d1db9 100644 --- a/install/update.php +++ b/install/update.php @@ -2512,8 +2512,8 @@ function update_r1187() { function update_r1188() { - $r1 = q("alter table channel add channel_password varchar(255) not null "); - $r2 = q("alter table channel add channel_salt varchar(255) not null "); + $r1 = q("alter table channel add channel_password varchar(255) not null default '' "); + $r2 = q("alter table channel add channel_salt varchar(255) not null default '' "); if($r1 && $r2) return UPDATE_SUCCESS; |