I need a DATE column to default to current not timestamp
I need it to be something like 2014-11-27
CHANGE COLUMN `date` `date` DATE NULL DEFAULT TODAY() 
mysql is not accepting the above because TODAY() is unknown. DATE(), DATE, CURDATE() and CURDATE also do not work
 
     
    