What would be the DDL syntax for changing a MySQL column name from int(10) to int(11)?
I've done a number of searches using DDL, int(10) and int(11) like this but I've not found any syntax examples.
The current migration is failing because an int(11) is being used as a foreign key referencing an int(10)
I realise I can do this in a GUI. I'm looking to push this change into a migration script for Django.
This was marked as a duplicate because another answer generally solved the issue. I was searching specifically for changing int(10) to int(11). More to the point ... the question marked as a possible duplicate did not come up with the searches I was making.