Default value for field with type DATE

Hello team
Can you please explain, what kind of function I can use for set default value for such field, like in MySQL CURDATE() ???
Now I can see error
/* SQL Error (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 'CURDATE() AFTER field1’ at line 2 */

What is alternative function for RonDB?

Thanks

I think the following would work:
d DATE DEFAULT CURRENT_DATE
when you define the table.