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

getBigIntTypeDeclarationSQL() public method

{@inheritDoc}
public getBigIntTypeDeclarationSQL ( array $field )
$field array
    public function getBigIntTypeDeclarationSQL(array $field)
    {
        if (!empty($field['autoincrement'])) {
            return 'BIGSERIAL';
        }
        return 'BIGINT';
    }
PostgreSqlPlatform