File Coverage

blib/lib/Bracket/Schema/Result/Pick.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             # Created by DBIx::Class::Schema::Loader
3             # DO NOT MODIFY THE FIRST PART OF THIS FILE
4              
5             use strict;
6 4     4   1998 use warnings;
  4         42  
  4         100  
7 4     4   20  
  4         8  
  4         89  
8             use base 'DBIx::Class::Core';
9 4     4   17  
  4         8  
  4         855  
10              
11             =head1 NAME
12              
13             Bracket::Schema::Result::Pick
14              
15             =cut
16              
17             __PACKAGE__->table("pick");
18              
19             =head1 ACCESSORS
20              
21             =head2 id
22              
23             data_type: INT
24             default_value: undef
25             is_auto_increment: 1
26             is_nullable: 0
27             size: 11
28              
29             =head2 player
30              
31             data_type: INT
32             default_value: undef
33             is_foreign_key: 1
34             is_nullable: 0
35             size: 11
36              
37             =head2 game
38              
39             data_type: INT
40             default_value: undef
41             is_foreign_key: 1
42             is_nullable: 0
43             size: 11
44              
45             =head2 pick
46              
47             data_type: INT
48             default_value: undef
49             is_foreign_key: 1
50             is_nullable: 0
51             size: 11
52              
53             =cut
54              
55             __PACKAGE__->add_columns(
56             "id",
57             {
58             data_type => "INT",
59             default_value => undef,
60             is_auto_increment => 1,
61             is_nullable => 0,
62             size => 11,
63             },
64             "player",
65             {
66             data_type => "INT",
67             default_value => undef,
68             is_foreign_key => 1,
69             is_nullable => 0,
70             size => 11,
71             },
72             "game",
73             {
74             data_type => "INT",
75             default_value => undef,
76             is_foreign_key => 1,
77             is_nullable => 0,
78             size => 11,
79             },
80             "pick",
81             {
82             data_type => "INT",
83             default_value => undef,
84             is_foreign_key => 1,
85             is_nullable => 0,
86             size => 11,
87             },
88             );
89             __PACKAGE__->set_primary_key("id");
90              
91             =head1 RELATIONS
92              
93             =head2 game
94              
95             Type: belongs_to
96              
97             Related object: L<Bracket::Schema::Result::Game>
98              
99             =cut
100              
101             __PACKAGE__->belongs_to("game", "Bracket::Schema::Result::Game", { id => "game" }, {});
102              
103             =head2 pick
104              
105             Type: belongs_to
106              
107             Related object: L<Bracket::Schema::Result::Team>
108              
109             =cut
110              
111             __PACKAGE__->belongs_to("pick", "Bracket::Schema::Result::Team", { id => "pick" }, {});
112              
113             =head2 player
114              
115             Type: belongs_to
116              
117             Related object: L<Bracket::Schema::Result::Player>
118              
119             =cut
120              
121             __PACKAGE__->belongs_to(
122             "player",
123             "Bracket::Schema::Result::Player",
124             { id => "player" },
125             {},
126             );
127              
128              
129             # Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-03-15 11:45:32
130             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3y+D7eOEFq574St+fKk+zw
131              
132              
133             # You can replace this text with custom content, and it will be preserved on regeneration
134             1;