I am using Phalcon 1.1.0 (from yesterday). I have title and body fields and have set in the model
public function initialize()
{
$this->skipAttributes(array('body'));
}
and still when I try to create new only with title it says: "body is required". Am I doing something wrong? (by the way skipAttributesOnCreate is working)