File Coverage

blib/lib/Interchange6/Schema/Result/UserRole.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 2     2   1101 use utf8;
  2         5  
  2         15  
2              
3             package Interchange6::Schema::Result::UserRole;
4              
5             =head1 NAME
6              
7             Interchange6::Schema::Result::UserRole
8              
9             =cut
10              
11 2     2   94 use Interchange6::Schema::Candy;
  2         4  
  2         16  
12              
13             =head1 ACCESSORS
14              
15             =head2 users_id
16              
17             FK on L<Interchange6::Schema::Result::User/users_id>.
18              
19             =cut
20              
21             column users_id =>
22             { data_type => "integer" };
23              
24             =head2 roles_id
25              
26             FK on L<Interchange6::Schema::Result::Role/roles_id>.
27              
28             =cut
29              
30             column roles_id =>
31             { data_type => "integer" };
32              
33             =head1 PRIMARY KEY
34              
35             =over 4
36              
37             =item * L</users_id>
38              
39             =item * L</roles_id>
40              
41             =back
42              
43             =cut
44              
45             primary_key "users_id", "roles_id";
46              
47             =head1 RELATIONS
48              
49             =head2 role
50              
51             Type: belongs_to
52              
53             Related object: L<Interchange6::Schema::Result::Role>
54              
55             =cut
56              
57             belongs_to
58             role => "Interchange6::Schema::Result::Role",
59             "roles_id",
60             { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" };
61              
62             =head2 user
63              
64             Type: belongs_to
65              
66             Related object: L<Interchange6::Schema::Result::User>
67              
68             =cut
69              
70             belongs_to
71             user => "Interchange6::Schema::Result::User",
72             "users_id";
73              
74             1;