I have a model Animal in Yii which has two relations, mainRace and secondaryRace, both of them being an instance of the Race model.
How can this be translated into the relations array of Animal model aswell as in the Race model?
|
|
|
Looks like you'd need a many to many relationship, so you'll need one more table (animal_race). See the Yii Relational page for more info on how to setup a MANY_MANY Edit: if you're wanting to limit the animal to only two races, then you'd probably want to have a main_race_id / secondary_race_id in the Animal model (assuming an animal can only ever be in two races, what if the animal is entered in multiple events?). And then you'd use a BELONGS_TO setup. That way you can easily find all the animals for a given race using a HAS_MANY relationship. |
|||||
|