Filename | /home/vagrant/kohaclone/Koha/Schema/Result/TmpHoldsqueue.pm |
Statements | Executed 11 statements in 563µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 101µs | 107µs | BEGIN@1.2783 | Class::C3::Componentised::
1 | 1 | 1 | 11µs | 20µs | BEGIN@13 | Koha::Schema::Result::TmpHoldsqueue::
1 | 1 | 1 | 10µs | 80µs | BEGIN@16 | Koha::Schema::Result::TmpHoldsqueue::
1 | 1 | 1 | 9µs | 19µs | BEGIN@14 | Koha::Schema::Result::TmpHoldsqueue::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 104µs | 2 | 114µs | # spent 107µs (101+6) within Class::C3::Componentised::BEGIN@1.2783 which was called:
# once (101µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 107µs making 1 call to Class::C3::Componentised::BEGIN@1.2783
# spent 6µs making 1 call to utf8::import |
2 | package Koha::Schema::Result::TmpHoldsqueue; | ||||
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::TmpHoldsqueue | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 76µs | 2 | 30µs | # spent 20µs (11+10) within Koha::Schema::Result::TmpHoldsqueue::BEGIN@13 which was called:
# once (11µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 20µs making 1 call to Koha::Schema::Result::TmpHoldsqueue::BEGIN@13
# spent 10µs making 1 call to strict::import |
14 | 2 | 42µs | 2 | 28µs | # spent 19µs (9+9) within Koha::Schema::Result::TmpHoldsqueue::BEGIN@14 which was called:
# once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 19µs making 1 call to Koha::Schema::Result::TmpHoldsqueue::BEGIN@14
# spent 9µs making 1 call to warnings::import |
15 | |||||
16 | 2 | 274µs | 2 | 150µs | # spent 80µs (10+70) within Koha::Schema::Result::TmpHoldsqueue::BEGIN@16 which was called:
# once (10µs+70µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 80µs making 1 call to Koha::Schema::Result::TmpHoldsqueue::BEGIN@16
# spent 70µs making 1 call to base::import |
17 | |||||
18 | =head1 TABLE: C<tmp_holdsqueue> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 21µs | 1 | 323µs | __PACKAGE__->table("tmp_holdsqueue"); # spent 323µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
23 | |||||
24 | =head1 ACCESSORS | ||||
25 | |||||
26 | =head2 biblionumber | ||||
27 | |||||
28 | data_type: 'integer' | ||||
29 | is_nullable: 1 | ||||
30 | |||||
31 | =head2 itemnumber | ||||
32 | |||||
33 | data_type: 'integer' | ||||
34 | is_nullable: 1 | ||||
35 | |||||
36 | =head2 barcode | ||||
37 | |||||
38 | data_type: 'varchar' | ||||
39 | is_nullable: 1 | ||||
40 | size: 20 | ||||
41 | |||||
42 | =head2 surname | ||||
43 | |||||
44 | data_type: 'mediumtext' | ||||
45 | is_nullable: 0 | ||||
46 | |||||
47 | =head2 firstname | ||||
48 | |||||
49 | data_type: 'text' | ||||
50 | is_nullable: 1 | ||||
51 | |||||
52 | =head2 phone | ||||
53 | |||||
54 | data_type: 'text' | ||||
55 | is_nullable: 1 | ||||
56 | |||||
57 | =head2 borrowernumber | ||||
58 | |||||
59 | data_type: 'integer' | ||||
60 | is_nullable: 0 | ||||
61 | |||||
62 | =head2 cardnumber | ||||
63 | |||||
64 | data_type: 'varchar' | ||||
65 | is_nullable: 1 | ||||
66 | size: 16 | ||||
67 | |||||
68 | =head2 reservedate | ||||
69 | |||||
70 | data_type: 'date' | ||||
71 | datetime_undef_if_invalid: 1 | ||||
72 | is_nullable: 1 | ||||
73 | |||||
74 | =head2 title | ||||
75 | |||||
76 | data_type: 'mediumtext' | ||||
77 | is_nullable: 1 | ||||
78 | |||||
79 | =head2 itemcallnumber | ||||
80 | |||||
81 | data_type: 'varchar' | ||||
82 | is_nullable: 1 | ||||
83 | size: 255 | ||||
84 | |||||
85 | =head2 holdingbranch | ||||
86 | |||||
87 | data_type: 'varchar' | ||||
88 | is_nullable: 1 | ||||
89 | size: 10 | ||||
90 | |||||
91 | =head2 pickbranch | ||||
92 | |||||
93 | data_type: 'varchar' | ||||
94 | is_nullable: 1 | ||||
95 | size: 10 | ||||
96 | |||||
97 | =head2 notes | ||||
98 | |||||
99 | data_type: 'text' | ||||
100 | is_nullable: 1 | ||||
101 | |||||
102 | =head2 item_level_request | ||||
103 | |||||
104 | data_type: 'tinyint' | ||||
105 | default_value: 0 | ||||
106 | is_nullable: 0 | ||||
107 | |||||
108 | =cut | ||||
109 | |||||
110 | 1 | 34µs | 1 | 2.19ms | __PACKAGE__->add_columns( # spent 2.19ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
111 | "biblionumber", | ||||
112 | { data_type => "integer", is_nullable => 1 }, | ||||
113 | "itemnumber", | ||||
114 | { data_type => "integer", is_nullable => 1 }, | ||||
115 | "barcode", | ||||
116 | { data_type => "varchar", is_nullable => 1, size => 20 }, | ||||
117 | "surname", | ||||
118 | { data_type => "mediumtext", is_nullable => 0 }, | ||||
119 | "firstname", | ||||
120 | { data_type => "text", is_nullable => 1 }, | ||||
121 | "phone", | ||||
122 | { data_type => "text", is_nullable => 1 }, | ||||
123 | "borrowernumber", | ||||
124 | { data_type => "integer", is_nullable => 0 }, | ||||
125 | "cardnumber", | ||||
126 | { data_type => "varchar", is_nullable => 1, size => 16 }, | ||||
127 | "reservedate", | ||||
128 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
129 | "title", | ||||
130 | { data_type => "mediumtext", is_nullable => 1 }, | ||||
131 | "itemcallnumber", | ||||
132 | { data_type => "varchar", is_nullable => 1, size => 255 }, | ||||
133 | "holdingbranch", | ||||
134 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
135 | "pickbranch", | ||||
136 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
137 | "notes", | ||||
138 | { data_type => "text", is_nullable => 1 }, | ||||
139 | "item_level_request", | ||||
140 | { data_type => "tinyint", default_value => 0, is_nullable => 0 }, | ||||
141 | ); | ||||
142 | |||||
143 | |||||
144 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
145 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZD6xOAdXuMjglFtNa+DMEQ | ||||
146 | |||||
147 | |||||
148 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
149 | 1 | 12µs | 1; |