diff options
author | zotlabs <mike@macgirvin.com> | 2017-04-26 19:47:05 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-04-26 19:47:05 -0700 |
commit | 6fcfab34883e5e93e9438ed4872de304e22b0f00 (patch) | |
tree | 6ad985a45df16bd173e7062e32d5f90aad2574e2 /install | |
parent | b88be137ca68c6b52e13ce1738fbc55651f37138 (diff) | |
download | volse-hubzilla-6fcfab34883e5e93e9438ed4872de304e22b0f00.tar.gz volse-hubzilla-6fcfab34883e5e93e9438ed4872de304e22b0f00.tar.bz2 volse-hubzilla-6fcfab34883e5e93e9438ed4872de304e22b0f00.zip |
issues from hubzilla:#737
Diffstat (limited to 'install')
-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 b37af9cef..75f9158c9 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; |