Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Owners.pm
CommitLineData
8273e845 1package # hide from PAUSE
65c2b042 2 DBICTest::Schema::Owners;
3
4a233f30 4use warnings;
5use strict;
6
65c2b042 7use base qw/DBICTest::BaseResult/;
8
9__PACKAGE__->table('owners');
10__PACKAGE__->add_columns(
bed3a173 11 'id' => {
65c2b042 12 data_type => 'integer',
13 is_auto_increment => 1,
14 },
15 'name' => {
16 data_type => 'varchar',
17 size => '100',
18 },
19);
bed3a173 20__PACKAGE__->set_primary_key('id');
65c2b042 21
86bb5a27 22__PACKAGE__->add_unique_constraint(['name']);
23
65c2b042 24__PACKAGE__->has_many(books => "DBICTest::Schema::BooksInLibrary", "owner");
25
261;