Никакого смысла уменьшать нет, цитирую официальную документацию (
9.2. Numeric Types):
Another extension is supported by MySQL for optionally specifying the display width of integer data types in parentheses following the base keyword for the type (for example, INT(4)). This optional display width is used to display integer values having a width less than the width specified for the column by left-padding them with spaces.
The display width does not constrain the range of values that can be stored in the column, nor the number of digits that are displayed for values having a width exceeding that specified for the column. For example, a column specified as SMALLINT(3) has the usual SMALLINT range of -32768 to 32767, and values outside the range allowed by three characters are displayed using more than three characters.
Т.е. число в скобках влияет на количество отображаемых символов, и если значение в колонке по количеству символов меньше указанного, добивает слева пробелами... Не более того.
Кстати, не забывайте, что у типов smallint и int сильно отличаются максимальные значения. В smallint вы не сможете "засунуть" число больше чем 32767... Так что учитывайте этот фактор, при ваших оптмизиациях... Для количества пользователей, может их хватит (хотя у меня есть опыт работы с порталом на Joomla где количство пользователей во много раз превышает это число), а для каталога товаров, я бы не рисковал ставить этот тип в качестве идентифкатора.