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