has_many many-to-many relationship?
In my artists_model I have added a has_many of itself as follows:
public $has_many = array('related_artists' => 'artists_model');
So I can, for example, add artist B as a related_artist to artist A.
But I now want artist A to automatically be a related_artist to artist B - how can I achieve this?
Thanks
Comments