i have tried following queries to alter existing column with default getdate constraint
ALTER TABLE PartyTypes ALTER COLUMN CreatedDate GetDate();
ALTER TABLE partytypes ADD CONSTRAINT DF_Constraint DEFAULT GetDate() FOR CreatedDate;
both are giving error
ALTER TABLE partytypes ADD CONSTRAINT DF_Constraint DEFAULT GetDate() FOR CreatedDate Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT GetDate() FOR CreatedDate' at line 1 0.000 sec
any updates on this
workbenchright click on the table and selectAlter Table. Then using the GUI its more easy to set the default for the desired column