"allow to use now() beside current_timestamp, as Postgres backups contain it and it's easier to remember anyway"

This commit is contained in:
Ralf Becker 2009-05-15 07:18:06 +00:00
parent 2a03d32d81
commit a083233c43

View File

@ -1030,7 +1030,8 @@ class schema_proc
break;
case 'date':
$ado_col = 'D';
if ($col_data['default'] == 'current_date')
// allow to use now() beside current_date, as Postgres backups contain it and it's easier to remember anyway
if (in_array($col_data['default'],array('current_date','now()')))
{
$ado_col .= ' DEFDATE';
unset($col_data['default']);
@ -1064,7 +1065,8 @@ class schema_proc
break;
case 'timestamp':
$ado_col = 'T';
if ($col_data['default'] == 'current_timestamp')
// allow to use now() beside current_timestamp, as Postgres backups contain it and it's easier to remember anyway
if (in_array($col_data['default'],array('current_timestamp','now()')))
{
$ado_col .= ' DEFTIMESTAMP';
unset($col_data['default']);