Modifying columns of a table in mysql
xxxxxxxxxx
ALTER TABLE table_name
MODIFY column_name column_definition
[ FIRST | AFTER column_name ],
MODIFY column_name column_definition
[ FIRST | AFTER column_name ],
;
eg:
ALTER TABLE contacts
ADD last_name varchar(40) NOT NULL
AFTER contact_id;