I am converting sqlserver tables over to mysql...
I am running a create table statement with the following column:
date_expires datetime DEFAULT getdate() + 60 NULL,
mysql doesn't like this at all... I have explored the mysql DATE_ADD function, but am unable to get any results...
any ideas?