Doctrine\DBAL\Platforms\PostgreSqlPlatform::getDateTimeTypeDeclarationSQL PHP Method

getDateTimeTypeDeclarationSQL() public method

{@inheritDoc}
public getDateTimeTypeDeclarationSQL ( array $fieldDeclaration )
$fieldDeclaration array
    public function getDateTimeTypeDeclarationSQL(array $fieldDeclaration)
    {
        return 'TIMESTAMP(0) WITHOUT TIME ZONE';
    }
PostgreSqlPlatform