using ->rows here was not a reliable thing to do
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Label.pm
CommitLineData
ab8481f5 1package # hide from PAUSE
2 DBICTest::Schema::Label;
3
4use base 'DBIx::Class::Core';
5
6__PACKAGE__->table('label');
7__PACKAGE__->add_columns(
8 'labelid' => {
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('labelid');
19
20__PACKAGE__->has_many(
21 agents => 'DBICTest::Schema::Agent',
22 undef,
23 { prefetch => 'artists' }
24);
25
261;