fix update_r1189() for mysql and postgres

This commit is contained in:
Mario Vavti 2017-05-28 17:54:05 +02:00
parent bb669ccd2c
commit 03b8ecd0de

View File

@ -2524,8 +2524,13 @@ function update_r1188() {
function update_r1189() {
$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(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r2 = q("alter table mail add mail_raw smallint not null default 0 ");
}
else {
$r2 = q("alter table mail add mail_raw tinyint(4) not null default 0 ");
}
if($r1 && $r2)
return UPDATE_SUCCESS;
return UPDATE_FAILED;