Fix pgsql
This commit is contained in:
parent
12748640a5
commit
c08255657e
@ -211,7 +211,7 @@ class DoliDBPgsql extends DoliDB
|
|||||||
$line = preg_replace('/tinyint/i', 'smallint', $line);
|
$line = preg_replace('/tinyint/i', 'smallint', $line);
|
||||||
|
|
||||||
// nuke unsigned
|
// nuke unsigned
|
||||||
$line = preg_replace('/(int\w+|smallint)\s+unsigned/i', '\\1', $line);
|
$line = preg_replace('/(int\w+|smallint|bigint)\s+unsigned/i', '\\1', $line);
|
||||||
|
|
||||||
// blob -> text
|
// blob -> text
|
||||||
$line = preg_replace('/\w*blob/i', 'text', $line);
|
$line = preg_replace('/\w*blob/i', 'text', $line);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user