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