MySQL migrations

Every time I try to do a migration using MySQL I receive this message for every integer column:

· You're about to change id column type from int(11) to int with 14791 items


The columns are defined with the plain int object:

    id: int('id').primaryKey().autoincrement(),


What am I missing here?
Was this page helpful?