So far I am doing it this way:
"ALTER TABLE `database_name`.`table_name` CHANGE
`old_column_name` `new_column_name` column_type_now"
But this is problematic if the column had not NULL default values or was a key since those things are discarded when the column is renamed.
How I can deal with this issue?