]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/Owners.pm
test case for might_have and another minor bug fix
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / Owners.pm
1 package # hide from PAUSE
2 DBICTest::Schema::Owners;
3
4 use base qw/DBIx::Class::Core/;
5
6 __PACKAGE__->table('owners');
7 __PACKAGE__->add_columns(
8 'ownerid' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'name' => {
13 data_type => 'varchar',
14 size => '100',
15 },
16 );
17 __PACKAGE__->set_primary_key('ownerid');
18
19 __PACKAGE__->has_many(books => "DBICTest::Schema::BooksInLibrary", "owner");
20
21 1;
This page took 0.028707 seconds and 4 git commands to generate.