Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Permission.pm |
Statements | Executed 14 statements in 481µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 29µs | 32µs | BEGIN@1.70 | Class::C3::Componentised::
1 | 1 | 1 | 12µs | 19µs | BEGIN@14 | Koha::Schema::Result::Permission::
1 | 1 | 1 | 10µs | 20µs | BEGIN@13 | Koha::Schema::Result::Permission::
1 | 1 | 1 | 10µs | 85µs | BEGIN@16 | Koha::Schema::Result::Permission::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 69µs | 2 | 36µs | # spent 32µs (29+4) within Class::C3::Componentised::BEGIN@1.70 which was called:
# once (29µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 32µs making 1 call to Class::C3::Componentised::BEGIN@1.70
# spent 4µs making 1 call to utf8::import |
2 | package Koha::Schema::Result::Permission; | ||||
3 | |||||
4 | # Created by DBIx::Class::Schema::Loader | ||||
5 | # DO NOT MODIFY THE FIRST PART OF THIS FILE | ||||
6 | |||||
7 | =head1 NAME | ||||
8 | |||||
9 | Koha::Schema::Result::Permission | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 38µs | 2 | 30µs | # spent 20µs (10+10) within Koha::Schema::Result::Permission::BEGIN@13 which was called:
# once (10µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 20µs making 1 call to Koha::Schema::Result::Permission::BEGIN@13
# spent 10µs making 1 call to strict::import |
14 | 2 | 45µs | 2 | 26µs | # spent 19µs (12+7) within Koha::Schema::Result::Permission::BEGIN@14 which was called:
# once (12µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 19µs making 1 call to Koha::Schema::Result::Permission::BEGIN@14
# spent 7µs making 1 call to warnings::import |
15 | |||||
16 | 2 | 242µs | 2 | 160µs | # spent 85µs (10+75) within Koha::Schema::Result::Permission::BEGIN@16 which was called:
# once (10µs+75µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 85µs making 1 call to Koha::Schema::Result::Permission::BEGIN@16
# spent 75µs making 1 call to base::import |
17 | |||||
18 | =head1 TABLE: C<permissions> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 23µs | 1 | 362µs | __PACKAGE__->table("permissions"); # spent 362µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
23 | |||||
24 | =head1 ACCESSORS | ||||
25 | |||||
26 | =head2 module_bit | ||||
27 | |||||
28 | data_type: 'integer' | ||||
29 | default_value: 0 | ||||
30 | is_foreign_key: 1 | ||||
31 | is_nullable: 0 | ||||
32 | |||||
33 | =head2 code | ||||
34 | |||||
35 | data_type: 'varchar' | ||||
36 | default_value: (empty string) | ||||
37 | is_nullable: 0 | ||||
38 | size: 64 | ||||
39 | |||||
40 | =head2 description | ||||
41 | |||||
42 | data_type: 'varchar' | ||||
43 | is_nullable: 1 | ||||
44 | size: 255 | ||||
45 | |||||
46 | =cut | ||||
47 | |||||
48 | 1 | 21µs | 1 | 1.18ms | __PACKAGE__->add_columns( # spent 1.18ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
49 | "module_bit", | ||||
50 | { | ||||
51 | data_type => "integer", | ||||
52 | default_value => 0, | ||||
53 | is_foreign_key => 1, | ||||
54 | is_nullable => 0, | ||||
55 | }, | ||||
56 | "code", | ||||
57 | { data_type => "varchar", default_value => "", is_nullable => 0, size => 64 }, | ||||
58 | "description", | ||||
59 | { data_type => "varchar", is_nullable => 1, size => 255 }, | ||||
60 | ); | ||||
61 | |||||
62 | =head1 PRIMARY KEY | ||||
63 | |||||
64 | =over 4 | ||||
65 | |||||
66 | =item * L</module_bit> | ||||
67 | |||||
68 | =item * L</code> | ||||
69 | |||||
70 | =back | ||||
71 | |||||
72 | =cut | ||||
73 | |||||
74 | 1 | 18µs | 1 | 109µs | __PACKAGE__->set_primary_key("module_bit", "code"); # spent 109µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
75 | |||||
76 | =head1 RELATIONS | ||||
77 | |||||
78 | =head2 module_bit | ||||
79 | |||||
80 | Type: belongs_to | ||||
81 | |||||
82 | Related object: L<Koha::Schema::Result::Userflag> | ||||
83 | |||||
84 | =cut | ||||
85 | |||||
86 | 1 | 10µs | 1 | 631µs | __PACKAGE__->belongs_to( # spent 631µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to |
87 | "module_bit", | ||||
88 | "Koha::Schema::Result::Userflag", | ||||
89 | { bit => "module_bit" }, | ||||
90 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
91 | ); | ||||
92 | |||||
93 | =head2 user_permissions | ||||
94 | |||||
95 | Type: has_many | ||||
96 | |||||
97 | Related object: L<Koha::Schema::Result::UserPermission> | ||||
98 | |||||
99 | =cut | ||||
100 | |||||
101 | 1 | 8µs | 1 | 294µs | __PACKAGE__->has_many( # spent 294µs making 1 call to DBIx::Class::Relationship::HasMany::has_many |
102 | "user_permissions", | ||||
103 | "Koha::Schema::Result::UserPermission", | ||||
104 | { | ||||
105 | "foreign.code" => "self.code", | ||||
106 | "foreign.module_bit" => "self.module_bit", | ||||
107 | }, | ||||
108 | { cascade_copy => 0, cascade_delete => 0 }, | ||||
109 | ); | ||||
110 | |||||
111 | |||||
112 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
113 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ut3lzlxoPPoIIwmhJViV1Q | ||||
114 | |||||
115 | |||||
116 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
117 | 1 | 8µs | 1; |