X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FCollectionObject.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FCollectionObject.pm;h=0000000000000000000000000000000000000000;hb=8b2c6f39484dd3dd94e1b7ed5ebe63f2ba98d0fb;hp=446909c22bfedadb03133333f093df11d8493a4e;hpb=459a67e3365a32a2a88374d81f7b9cc5f8f8412e;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git diff --git a/t/lib/DBICTest/Schema/CollectionObject.pm b/t/lib/DBICTest/Schema/CollectionObject.pm deleted file mode 100644 index 446909c..0000000 --- a/t/lib/DBICTest/Schema/CollectionObject.pm +++ /dev/null @@ -1,24 +0,0 @@ -package # hide from PAUSE - DBICTest::Schema::CollectionObject; - -use base qw/DBICTest::BaseResult/; - -__PACKAGE__->table('collection_object'); -__PACKAGE__->add_columns( - 'collection' => { - data_type => 'integer', - }, - 'object' => { - data_type => 'integer', - }, -); -__PACKAGE__->set_primary_key(qw/collection object/); - -__PACKAGE__->belongs_to( collection => "DBICTest::Schema::Collection", - { "foreign.collectionid" => "self.collection" } - ); -__PACKAGE__->belongs_to( object => "DBICTest::Schema::TypedObject", - { "foreign.objectid" => "self.object" } - ); - -1;