From: Matt S Trout Date: Wed, 14 Dec 2005 06:09:57 +0000 (+0000) Subject: Fixup after pull from trunk X-Git-Tag: v0.05005~119^2~24 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b8777a0d404d4ae4fb55473ae224ace5d0b71375;hp=89bfba91c9347d7ef481dd3f33365fdd3c003c62;p=dbsrgits%2FDBIx-Class.git Fixup after pull from trunk --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 322f590..7fb6f60 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -8,6 +8,8 @@ use base qw/DBIx::Class::Componentised Class::Data::Accessor/; sub mk_classdata { shift->mk_classaccessor(@_); } +$VERSION = '0.04999_01'; + 1; =head1 NAME diff --git a/t/lib/DBICTest/Schema/HelperRels.pm b/t/lib/DBICTest/Schema/HelperRels.pm index de45943..63191ea 100644 --- a/t/lib/DBICTest/Schema/HelperRels.pm +++ b/t/lib/DBICTest/Schema/HelperRels.pm @@ -26,7 +26,7 @@ DBICTest::Schema::SelfRef->has_many( DBICTest::Schema::Tag->belongs_to('cd', 'DBICTest::Schema::CD'); -DBICTest::Schema::Track->belongs_to('cd', 'DBICTest::Schema::CD', 'cdid'); +DBICTest::Schema::Track->belongs_to('cd', 'DBICTest::Schema::CD'); DBICTest::Schema::Track->belongs_to('disc', 'DBICTest::Schema::CD', 'cd');