I want to add comments to columns for already created users table in MySQL database
I am trying following command
ALTER TABLE users CHANGE id id INT(11) NOT NULL COMMENT 'id of user';
But I am getting following error as the id column is used as foreign key in user_address table
SQL Error [1833] [HY000]: Cannot change column 'id': used in a foreign key constraint 'user_address_users_FK' of table 'user_address'
How to do add comment to id column without getting this error? Also is there a way to add comment without a need to mention column definition again?