f6d8180d3527c3c64376b8cb6f5492e335707c0c
[dbsrgits/DBIx-Class-Fixtures.git] / t / lib / DBICTest / Schema / Artist.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::Artist;
3
4 use 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
25 sub new {
26         my ( $class, $args ) = @_;
27
28         $args->{name} = "Test Name" unless $args->{name};
29
30         return $class->next::method( $args );
31 }
32
33 1;