This is the model. I don't really want to change it to ignore the
conventions. I'd rather sort the problem.

<?php
class Season extends AppModel {

        var $name = 'Season';

        //The Associations below have been created with all possible keys,
those that are not needed can be removed
        var $hasAndBelongsToMany = array(
                'SeasonsTeam' => array(
                        'className' => 'SeasonsTeam',
                        'joinTable' => 'managers_seasons_teams',
                        'foreignKey' => 'season_id',
                        'associationForeignKey' => 'seasons_team_id',
                        'unique' => true,
                        'conditions' => '',
                        'fields' => '',
                        'order' => '',
                        'limit' => '',
                        'offset' => '',
                        'finderQuery' => '',
                        'deleteQuery' => '',
                        'insertQuery' => ''
                )
        );

}
?>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to