a0c8a30179c7238446adcea319ce1a4c6a2575a4
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CollectionObject.pm
1 package # hide from PAUSE
2     DBICTest::Schema::CollectionObject;
3
4 use base qw/DBICTest::BaseResult/;
5
6 __PACKAGE__->table('collection_object');
7 __PACKAGE__->add_columns(
8   'collection' => {
9     data_type => 'integer',
10   },
11   'object' => {
12     data_type => 'integer',
13   },
14 );
15 __PACKAGE__->set_primary_key(qw/collection object/);
16
17 __PACKAGE__->belongs_to( collection => "DBICTest::Schema::Collection",
18                          { "foreign.collectionid" => "self.collection" }
19                        );
20 __PACKAGE__->belongs_to( object => "DBICTest::Schema::TypedObject",
21                          { "foreign.objectid" => "self.object" }
22                        );
23
24 1;