release v0.900201
[dbsrgits/DBIx-Class-Journal.git] / t / lib / DBICTest / Schema / Artist.pm
CommitLineData
b5851590 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__->mk_classdata('field_name_for', {
21 artistid => 'primary key',
22 name => 'artist name',
23});
24
25__PACKAGE__->has_many(
26 cds => 'DBICTest::Schema::CD', undef,
27 { order_by => 'year' },
28);
29
301;