1 package # hide from PAUSE
2 DBICTest::Schema::Artwork;
4 use base qw/DBIx::Class::Core/;
6 __PACKAGE__->table('cd_artwork');
7 __PACKAGE__->add_columns(
9 data_type => 'integer',
12 __PACKAGE__->set_primary_key('cd_id');
13 __PACKAGE__->belongs_to('cd', 'DBICTest::Schema::CD', 'cd_id');
14 __PACKAGE__->has_many('images', 'DBICTest::Schema::Image', 'artwork_id');