Doctrine\DBAL\Platforms\MySqlPlatform::getSmallIntTypeDeclarationSQL PHP Метод

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

{@inheritDoc}
public getSmallIntTypeDeclarationSQL ( array $field )
$field array
    public function getSmallIntTypeDeclarationSQL(array $field)
    {
        return 'SMALLINT' . $this->_getCommonIntegerTypeDeclarationSQL($field);
    }
MySqlPlatform