Write a command to add a NOT NULL constraint on FEES column of a student table.
ALTER TABLE student MODIFY COLUMN FEES INT NOT NULL;