という書き方は使えなくなって、
$conditions = array(
'FooModel.foo_important_type = NOW()'
);
にしたらダイジョウブらしい。
save()の場合には、
if ($this->Post->save($this->data)) {
$this->Post->updateAll(
array('Post.title' => 'Now()'),
array("Post.id" => $this->Post->getLastInsertID())
);
みたいにしたらNow()が使えます。これでいいんだろうか…。
ラベル:cakephp