Hello
There is an error doing "alter table" for a "SMALLINT" field.
ALTER TABLE store
CHANGE COLUMN order
order
SMALLINT(5,0) NOT NULL AFTER id
;
/ Error de SQL (1064): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ',0) NOT NULL AFTER id
' at line 2 /
You can see the error in the screenshot. Must be "SMALLINT (5)" instead of "SMALLINT (5,0)"
regards