Update varchar to text
parent
e16c4f0864
commit
f4dfbda4a6
|
@ -573,4 +573,17 @@ class Installer {
|
||||||
$this->execSQL($queries);
|
$this->execSQL($queries);
|
||||||
$this->log('Combined notifications enabled. Check out the config page for more info.');
|
$this->log('Combined notifications enabled. Check out the config page for more info.');
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Patch for v3.4.1 release
|
||||||
|
*/
|
||||||
|
protected function upgrade341() {
|
||||||
|
$queries = array();
|
||||||
|
/**
|
||||||
|
* Redirect_check is first set to default ok.
|
||||||
|
* If you have a lot of server that are redirecting,
|
||||||
|
* this will make sure you're servers stay online.
|
||||||
|
*/
|
||||||
|
$queries[] = "ALTER TABLE `".PSM_DB_PREFIX."servers` ALTER COLUMN `last_output` text;";
|
||||||
|
$this->execSQL($queries);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue