Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Owners.pm
CommitLineData
8273e845 1package # hide from PAUSE
65c2b042 2 DBICTest::Schema::Owners;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('owners');
7__PACKAGE__->add_columns(
bed3a173 8 'id' => {
65c2b042 9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'name' => {
13 data_type => 'varchar',
14 size => '100',
15 },
16);
bed3a173 17__PACKAGE__->set_primary_key('id');
65c2b042 18
19__PACKAGE__->has_many(books => "DBICTest::Schema::BooksInLibrary", "owner");
20
211;