Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Tournament extends AppModel {
- public $name = 'Tournament';
- public $belongsTo = array('Version');
- public $hasAndBelongsToMany = array(
- 'User' => array(
- 'className' => 'User',
- 'joinTable' => 'tournaments_users',
- 'foreignKey' => 'tournament_id',
- 'associationForeignKey' => 'user_id',
- 'with' => 'TournamentsUser'
- ),
- 'Team' => array(
- 'className' => 'Team',
- 'joinTable' => 'tournaments_users',
- 'foreignKey' => 'tournament_id',
- 'associationForeignKey' => 'team_id',
- 'with' => 'TournamentsUser'
- )
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement