0
在我的數據模型的主要實體是開口(工作),企業和學生CakePHP的2.3定義的數據模型
該公司創建了一個開放,所以我有一個屬於關聯關係,這是很好的
的學生可申請許多開口,從而保存這個我有一個鏈接表 openings_students
ID | opening_id | USER_ID
在開場模特類我有HABTM協會
public $hasAndBelongsToMany = array(
'Applicants' => array(
'className' => 'Student',
'joinTable' => 'openings_students',
'foreignKey' => 'opening_id',
'associationForeignKey' => 'user_id',
'unique' => 'true',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'deleteQuery' => '',
'insertQuery' => ''
)
);
這是我需要的還是我需要的另一個HABTM關係?
只有開始進入框架,所以任何幫助表示讚賞。