I have the following table setup
++++++++++++++ +++++++++++++
| TABLE A | + TABLE B +
++++++++++++++ +++++++++++++
| id |--- +++++++++++ ---| id |
| name | | + A_AND_B + | | something |
++++++++++++++ | +++++++++++ | +++++++++++++
-->| aID | |
| bID |<--
| status |
+++++++++++
I successfully set up the MANY_MANY relationship between these tables:
// TABLE A relations
return array(
'tableb' => array( self::MANY_MANY, 'TABLE B', 'A_AND_B(aID,bID)' )
)
and it works great and as I expected, but is there a way for me to get the `status` column from my table A_AND_B?
I also tried to add the `together` param, but didn't help...
thanks,
--iM

Help












