[DATABASE] Postgres doesn't understand '0000-00-00 00:00:00' for datetime, use '-infinity'

This commit is contained in:
Hugo Sales 2020-05-14 21:56:44 +00:00 committed by Hugo Sales
parent aaf38353ea
commit 0ccc359880
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 11 additions and 8 deletions

View File

@ -82,13 +82,13 @@ class SchemaDefDriver extends StaticPHPDriver
foreach ($schema['fields'] as $name => $opts) {
// TODO
// Convert old to new types
$type = // $name === 'date'
// // Old date fields were stored as int, store as datetime/timestamp
// ? 'datetime'
// // For ints, prepend the size (smallint)
// // The size field doesn't exist otherwise
// :
self::types[($opts['size'] ?? '') . $opts['type']];
$type = $name === 'date'
// Old date fields were stored as int, store as datetime/timestamp
? 'datetime'
// For ints, prepend the size (smallint)
// The size field doesn't exist otherwise
:
self::types[($opts['size'] ?? '') . $opts['type']];
$unique = null;
foreach ($schema['unique keys'] ?? [] as $key => $uniq_arr) {
@ -98,6 +98,9 @@ class SchemaDefDriver extends StaticPHPDriver
}
}
$default = (($opts['default'] ?? null) === '0000-00-00 00:00:00' && $_ENV['DBMS'] === 'postgres')
? '-infinity' : $opts['default'] ?? null;
$field = [
// boolean, optional
'id' => in_array($name, $schema['primary key']),
@ -119,7 +122,7 @@ class SchemaDefDriver extends StaticPHPDriver
'scale' => $opts['scale'] ?? null,
'options' => [
'comment' => $opts['description'] ?? null,
'default' => $opts['default'] ?? null,
'default' => $default,
'unsigned' => $opts['unsigned'] ?? null,
// bool, optional
'fixed' => $opts['type'] === 'char',