Skip to content

Instantly share code, notes, and snippets.

@veganista
Created June 27, 2012 14:31
Show Gist options
  • Save veganista/3004428 to your computer and use it in GitHub Desktop.
Save veganista/3004428 to your computer and use it in GitHub Desktop.
class User extends AppModel {
public $name = 'User';
public $belongsTo = array(
'FriendOne' => array(
'className' => 'Friend',
'foreignKey' => 'friend_1_id',
),
'FriendTwo' => array(
'className' => 'Friend',
'foreignKey' => 'friend_2_id',
)
..
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment