xxxxxxxxxx
ALTER TABLE tablename MODIFY columnname DATATYPE;
You can also use the "CHANGE" keyword instead of "MODIFY" to change the column name and type both at the same time
xxxxxxxxxx
ALTER TABLE tbl_name
CHANGE start_time new_name INT NOT NULL,
CHANGE end_time new_name INT NOT NULL;