Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Collection.pm
CommitLineData
8273e845 1package # hide from PAUSE
65c2b042 2 DBICTest::Schema::Collection;
3
4a233f30 4use warnings;
5use strict;
6
65c2b042 7use base qw/DBICTest::BaseResult/;
8
9__PACKAGE__->table('collection');
10__PACKAGE__->add_columns(
11 'collectionid' => {
12 data_type => 'integer',
13 is_auto_increment => 1,
14 },
15 'name' => {
16 data_type => 'varchar',
17 size => 100,
18 },
19);
20__PACKAGE__->set_primary_key('collectionid');
21
22__PACKAGE__->has_many( collection_object => "DBICTest::Schema::CollectionObject",
23 { "foreign.collection" => "self.collectionid" }
24 );
25__PACKAGE__->many_to_many( objects => collection_object => "object" );
26__PACKAGE__->many_to_many( pointy_objects => collection_object => "object",
27 { where => { "object.type" => "pointy" } }
28 );
29__PACKAGE__->many_to_many( round_objects => collection_object => "object",
8273e845 30 { where => { "object.type" => "round" } }
65c2b042 31 );
32
331;