Román Ginés Martínez Ferrández
unread,Apr 19, 2011, 4:58:48 AM4/19/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to outle...@googlegroups.com
Hello,
What can I do if I have these two tables?
Projects (id1, id2, name)
id1, id2 --> primary key
Bugs (id, projectID1, projectID2, description)
id --> primary key
projectID1, projectID2 --> foreign key to Projects (id1, id2)
This is valid?
'associations' => array(
array('one-to-many', 'Bugs', array('key'=>'ProjectID1','key'=>'ProjectID2'))
)
What I write in the outlet-config.php file in this case?
Thank you.