I am trying to test a Model and i need to insert into the 'created' field the current time-stamp.
I am using a Fixture for it but using 'NOW()' doesn't seem to work. It writes 0000-00-00 00:00:00.
This is my fixture record:
public $records = array(
array(
'id' => 1,
'body' => 'esto es una prueba',
'idUser' => 2,
'created' => 'NOW()',
'ip' =>'1.1.1.1',
)
)
Any idea about this? Thanks.