Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

package # hide from PAUSE
DBICTest::Schema::CollectionObject;
use strict;
__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;