ALTER TABLE customers MODIFY firstName VARCHAR(100) NOT NULL;
ALTER TABLE customers MODIFY firstName CHAR(100) NOT NULL;
ALTER TABLE customers MODIFY firstName VARCHAR(8);
ALTER TABLE customers ALTER firstName SET DEFAULT '';
ALTER TABLE customers ALTER firstName DROP DEFAULT;
Warning: You should never alter a table or other database object in a
production database without first consulting the DBA.