You need to give it a default value. Go into your database and assign a default value to it, I'm assuming give it empty string.
Thanks TONS!
Now getting this error.
Field 'age' doesn't have a default value
Should I run this SQL?
PHP:ALTER TABLE `users` ALTER COLUMN `age` SET DEFAULT ' ' ;
ALTER TABLE `users` ALTER COLUMN `age` SET DEFAULT '0' ;