Doctrine\DBAL\Platforms\PostgreSQL92Platform::getSmallIntTypeDeclarationSQL PHP Method

getSmallIntTypeDeclarationSQL() public method

public getSmallIntTypeDeclarationSQL ( array $field )
$field array
    public function getSmallIntTypeDeclarationSQL(array $field)
    {
        if (!empty($field['autoincrement'])) {
            return 'SMALLSERIAL';
        }
        return parent::getSmallIntTypeDeclarationSQL($field);
    }