array( 'numeric' => array( 'rule' => array('numeric'), //'message' => 'Your custom message here', //'allowEmpty' => false, //'required' => false, //'last' => false, // Stop validation after this rule //'on' => 'create', // Limit validation to 'create' or 'update' operations ), ), ); //The Associations below have been created with all possible keys, those that are not needed can be removed /** * hasAndBelongsToMany associations * * @var array */ public $hasAndBelongsToMany = array( 'Event' => array( 'className' => 'Event', 'joinTable' => 'Snapshots_Events', 'foreignKey' => 'SnapshotId', 'associationForeignKey' => 'EventId', 'unique'=>true, 'dependent' => false, 'conditions' => '', 'fields' => '', 'order' => '', 'limit' => '', 'offset' => '', 'exclusive' => '', 'finderQuery' => '', 'counterQuery' => '' ), ); }