From: Perrin Harkins Subject: Re: has_many() problems Date: 13:41 on 19 May 2005
On Thu, 2005-05-19 at 11:46 +0100, Will Hawes wrote:
> package MyApp::Entity;> __PACKAGE__->has_many(products => 'MyApp::Product');
If you make that
__PACKAGE__->has_many(products => 'MyApp::Product', 'supplier');
the problem will go away.
- Perrin