Filename | /home/vagrant/kohaclone/Koha/Schema/Result/BranchTransferLimit.pm |
Statements | Executed 0 statements in 0s |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 26µs | 30µs | BEGIN@1.1947 | Class::C3::Componentised::
1 | 1 | 1 | 10µs | 16µs | BEGIN@14 | Koha::Schema::Result::BranchTransferLimit::
1 | 1 | 1 | 9µs | 18µs | BEGIN@13 | Koha::Schema::Result::BranchTransferLimit::
1 | 1 | 1 | 9µs | 80µs | BEGIN@16 | Koha::Schema::Result::BranchTransferLimit::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 34µs | # spent 30µs (26+4) within Class::C3::Componentised::BEGIN@1.1947 which was called:
# once (26µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 30µs making 1 call to Class::C3::Componentised::BEGIN@1.1947
# spent 4µs making 1 call to utf8::import | ||
2 | package Koha::Schema::Result::BranchTransferLimit; | ||||
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::BranchTransferLimit | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 27µs | # spent 18µs (9+9) within Koha::Schema::Result::BranchTransferLimit::BEGIN@13 which was called:
# once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 18µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@13
# spent 9µs making 1 call to strict::import | ||
14 | 2 | 24µs | # spent 16µs (10+7) within Koha::Schema::Result::BranchTransferLimit::BEGIN@14 which was called:
# once (10µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 16µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@14
# spent 7µs making 1 call to warnings::import | ||
15 | |||||
16 | 2 | 152µs | # spent 80µs (9+71) within Koha::Schema::Result::BranchTransferLimit::BEGIN@16 which was called:
# once (9µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 80µs making 1 call to Koha::Schema::Result::BranchTransferLimit::BEGIN@16
# spent 71µs making 1 call to base::import | ||
17 | |||||
18 | =head1 TABLE: C<branch_transfer_limits> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 313µs | __PACKAGE__->table("branch_transfer_limits"); # spent 313µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table | ||
23 | |||||
24 | =head1 ACCESSORS | ||||
25 | |||||
26 | =head2 limitId | ||||
27 | |||||
28 | accessor: 'limit_id' | ||||
29 | data_type: 'integer' | ||||
30 | is_auto_increment: 1 | ||||
31 | is_nullable: 0 | ||||
32 | |||||
33 | =head2 toBranch | ||||
34 | |||||
35 | accessor: 'to_branch' | ||||
36 | data_type: 'varchar' | ||||
37 | is_nullable: 0 | ||||
38 | size: 10 | ||||
39 | |||||
40 | =head2 fromBranch | ||||
41 | |||||
42 | accessor: 'from_branch' | ||||
43 | data_type: 'varchar' | ||||
44 | is_nullable: 0 | ||||
45 | size: 10 | ||||
46 | |||||
47 | =head2 itemtype | ||||
48 | |||||
49 | data_type: 'varchar' | ||||
50 | is_nullable: 1 | ||||
51 | size: 10 | ||||
52 | |||||
53 | =head2 ccode | ||||
54 | |||||
55 | data_type: 'varchar' | ||||
56 | is_nullable: 1 | ||||
57 | size: 10 | ||||
58 | |||||
59 | =cut | ||||
60 | |||||
61 | 1 | 2.11ms | __PACKAGE__->add_columns( # spent 2.11ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns | ||
62 | "limitId", | ||||
63 | { | ||||
64 | accessor => "limit_id", | ||||
65 | data_type => "integer", | ||||
66 | is_auto_increment => 1, | ||||
67 | is_nullable => 0, | ||||
68 | }, | ||||
69 | "toBranch", | ||||
70 | { | ||||
71 | accessor => "to_branch", | ||||
72 | data_type => "varchar", | ||||
73 | is_nullable => 0, | ||||
74 | size => 10, | ||||
75 | }, | ||||
76 | "fromBranch", | ||||
77 | { | ||||
78 | accessor => "from_branch", | ||||
79 | data_type => "varchar", | ||||
80 | is_nullable => 0, | ||||
81 | size => 10, | ||||
82 | }, | ||||
83 | "itemtype", | ||||
84 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
85 | "ccode", | ||||
86 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
87 | ); | ||||
88 | |||||
89 | =head1 PRIMARY KEY | ||||
90 | |||||
91 | =over 4 | ||||
92 | |||||
93 | =item * L</limitId> | ||||
94 | |||||
95 | =back | ||||
96 | |||||
97 | =cut | ||||
98 | |||||
99 | 1 | 83µs | __PACKAGE__->set_primary_key("limitId"); # spent 83µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key | ||
100 | |||||
101 | |||||
102 | # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05 | ||||
103 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XPpJwcw5PRa7Fo7PRg32zg | ||||
104 | |||||
105 | |||||
106 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
107 | 1; |