Code: Select all
created timestamp not null default now(),
updated timestamp null default null on update current_timestamp,
But when forge generate or compares this is what I end up with is:
Code: Select all
created timestamp not null default '0000-00-00 00:00:00' on update current_timestamp,
updated timestamp null default null on update current_timestamp,
Do you have any guidance for this?
t.