in reply to package structure
For the relationships, you're supposed to use the full package name, sopackage bar::bar; use base 'Class::DBI'; 1;
I don't think you're actually supposed to use() your subclasses inside your base class either.__PACKAGE__->has_many(barf => 'bar::bar2');
|
|---|