testing for when resources are nested
[dbsrgits/DBIx-Class-Fixtures.git] / t / lib / DBICTest / Schema / Artist.pm
CommitLineData
c1a04675 1package # hide from PAUSE
2 DBICTest::Schema::Artist;
3
4use base 'DBIx::Class::Core';
5
6__PACKAGE__->table('artist');
7__PACKAGE__->add_columns(
8 'artistid' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'name' => {
13 data_type => 'varchar',
14 size => 100,
15 is_nullable => 1,
16 },
17);
18__PACKAGE__->set_primary_key('artistid');
19
20__PACKAGE__->has_many(
21 cds => 'DBICTest::Schema::CD', undef,
22 { order_by => 'year' },
23);
24
c7aececc 25__PACKAGE__->might_have(
26 washed_up => 'DBICTest::Schema::Artist::WashedUp',
27 {'foreign.fk_artistid' => 'self.artistid'},
28);
29
65a80d4e 30sub new {
31 my ( $class, $args ) = @_;
32
33 $args->{name} = "Test Name" unless $args->{name};
34
35 return $class->next::method( $args );
36}
37
c1a04675 381;