CREATE TABLE IF NOT EXISTS `web_subjects` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `web_subject_category_id` int(11) DEFAULT NULL,
      `title` varchar(128) DEFAULT NULL,
      `type` varchar(128) DEFAULT NULL,
      `description` text,
      `description_long` text,
      `editable` int(1) DEFAULT NULL,
      `deletable` int(1) DEFAULT NULL,
      `published` int(1) DEFAULT NULL,
      `order_number` int(11) DEFAULT NULL,
      `created` timestamp NULL DEFAULT NULL,
      `modified` timestamp NULL DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) 
ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;
模型
class WebSubject extends AppModel
    {
        public $name = "WebSubject";
        public $belongsTo = array("WebSubjectCategory");
        public $validate = array(
            'title' => array(
                'rule' => 'notEmpty',
                'message' => "Completati denumirea!"
            )
        );
        public $hasMany = array(
            'Image' => array(
                'className'  => 'WebFile',
                'foreignKey' => 'entity_id',
                'conditions' => array(
                                    'Image.type' => 'image',
                                    'Image.entity_table_name' => 'web_subjects'
                                ),              
                'order'      => array('Image.order_number ASC', 'Image.id DESC'),
                'dependent'  => true
            ),
            'Video' => array(
                'className'  => 'WebFile',
                'foreignKey' => 'entity_id',
                'conditions' => array(
                                    'Video.type' => 'video',
                                    'Video.entity_table_name' => 'web_subjects'
                                ),              
                'order'      => array('Video.order_number ASC', 'Video.id DESC'),
                'dependent'  => true
            )
        );
    }
控制器动作
public function admin_page_add(){
            if(!empty($this->request->data))
            {
                $this->WebSubject->create($this->data["WebSubject"]);
                $this->WebSubject->type = 'page';
                //debug($this->WebSubject);
                if($this->WebSubject->save()){
                    //debug($this->WebSubject);
                    //die(0);
                    $this->Session->setFlash("Pagina a fost salvata!", "flash/simpla_success");
                    $this->redirect('pages');
                }
                else{
                    $this->Session->setFlash("Pagina NU a fost salvata!", "flash/simpla_error");
                }
            }
        }
问题是模型似乎已保存并且我按预期重定向,但它没有插入到数据库中。
使用 debug(Model) 我看到模型正在使用的 id 增加了(就像它被插入然后删除一样)。
我使用了 sql_dump - 没有 INSERT 的痕迹。
而且,当然,没有验证错误。
我错过了什么?