How to Remove a Not Null Constraint in MySQL

To drop a NOT NULL constraint do the following:

alter table employee modify last_bonus_date date null;

IN THIS PAGE