Doctrine\DBAL\Platforms\PostgreSqlPlatform::getBigIntTypeDeclarationSQL PHP Метод

getBigIntTypeDeclarationSQL() публичный Метод

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