Macaron inserts the literal string CURRENT_TIMESTAMP if I declare a table with a field like this;
create table example(
id integer primary key,
timestamp datetime default CURRENT_TIMESTAMP
);
and create a new Example() with no explicit timestamp value.