aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-15 22:58:13 -0700
committerMario Vavti <mario@mariovavti.com>2017-05-20 22:59:12 +0200
commit1a9fdc565cb86f0b7b4e570085c3bb4ba83f3176 (patch)
tree22ce918243686f4617c2f15e193650ac420e1732 /install/update.php
parentb14fb1759d4eece5d98092d93fc38f178b28a236 (diff)
downloadvolse-hubzilla-1a9fdc565cb86f0b7b4e570085c3bb4ba83f3176.tar.gz
volse-hubzilla-1a9fdc565cb86f0b7b4e570085c3bb4ba83f3176.tar.bz2
volse-hubzilla-1a9fdc565cb86f0b7b4e570085c3bb4ba83f3176.zip
resolve merge conflict
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php
index ca347e4c2..06084a422 100644
--- a/install/update.php
+++ b/install/update.php
@@ -2475,7 +2475,7 @@ function update_r1184() {
function update_r1185() {
- $r1 = q("alter table app add app_plugin char(255) not null default '' ");
+ $r1 = q("alter table app add app_plugin text not null default '' ");
if($r1)
return UPDATE_SUCCESS;
@@ -2523,7 +2523,7 @@ function update_r1188() {
function update_r1189() {
- $r1 = q("alter table mail add mail_mimetype char(64) not null default 'text/bbcode' ");
+ $r1 = q("alter table mail add mail_mimetype varchar(64) not null default 'text/bbcode' ");
$r2 = q("alter table mail add mail_raw int(4) not null default '0' ");
if($r1 && $r2)