setTableName('user'); $this->hasColumn('username', 'string', 255); $this->hasColumn('contact_id', 'integer', 11); } public function setUp() { $this->hasOne('Contact', array('local' => 'contact_id', 'foreign' => 'id')); } }