ALTER TABLE ... MODIFY COLUMN ... does not allow renaming a column; therefore, the column name should only be provided once (current name).
To rename a column (among other changes that you can use for it, for example, to change its type), you must use ALTER TABLE ... CHANGE COLUMN ... and provide the current and new column names.
See the ALTER TABLE documentation page for more information and examples.
source share