On Sun, Jul 25, 2010 at 11:34 AM, danix <[email protected]> wrote:
> Hello,
>
> I've two models: User and Group. Users can be "parent" or "son".
> A parent can have many sons. And a son can belong to one parent.
>
> Can I use "hasAndBelongsToMany"??
> Or I need to use hasMany and belongsTo in the same model?
>
> Maybe I need to create the model "Family" with hasMany relationship
> with Users. Only one "parent" and many "sons".

Sorry about that.

Something like this should work:

public $belongsTo = array(
        'Parent' => array(
                'className' => 'User',
                'foreignKey' => 'parent_id'
        )
);
public $hasMany = array(
        'Child' => array(
                'className' => 'User',
                'foreignKey' => 'parent_id'
        )
);

The 'Parent' and 'Child' are aliases that Cake will use to set up the
data array.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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