X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=772c02670f046e3a0bf0962f81a6118a1d1240fe;hb=f873b733054ccaac282fa056adfe41d5fd987840;hp=f9cf49a64b7451b95f44ae3f7546d0c9cc14e675;hpb=f9cc85ce4c60c87d559247e28fe9a5f2ec18992c;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index f9cf49a..772c026 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -11,7 +11,7 @@ our $VERSION; # $VERSION declaration must stay up here, ahead of any other package # declarations, as to not confuse various modules attempting to determine # this ones version, whether that be s.c.o. or Module::Metadata, etc -$VERSION = '0.08191'; +$VERSION = '0.08195'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases @@ -155,7 +155,7 @@ See L for docs on defining result classes. __PACKAGE__->table('artist'); __PACKAGE__->add_columns(qw/ artistid name /); __PACKAGE__->set_primary_key('artistid'); - __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD'); + __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD', 'artistid'); 1;