Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Fieldmapping.pm |
Statements | Executed 12 statements in 434µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 30µs | 34µs | BEGIN@1.2335 | Class::C3::Componentised::
1 | 1 | 1 | 12µs | 87µs | BEGIN@16 | Koha::Schema::Result::Fieldmapping::
1 | 1 | 1 | 10µs | 20µs | BEGIN@13 | Koha::Schema::Result::Fieldmapping::
1 | 1 | 1 | 8µs | 18µs | BEGIN@14 | Koha::Schema::Result::Fieldmapping::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 78µs | 2 | 38µs | # spent 34µs (30+4) within Class::C3::Componentised::BEGIN@1.2335 which was called:
# once (30µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 34µs making 1 call to Class::C3::Componentised::BEGIN@1.2335
# spent 4µs making 1 call to utf8::import |
2 | package Koha::Schema::Result::Fieldmapping; | ||||
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::Fieldmapping | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 39µs | 2 | 30µs | # spent 20µs (10+10) within Koha::Schema::Result::Fieldmapping::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::Fieldmapping::BEGIN@13
# spent 10µs making 1 call to strict::import |
14 | 2 | 41µs | 2 | 28µs | # spent 18µs (8+10) within Koha::Schema::Result::Fieldmapping::BEGIN@14 which was called:
# once (8µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 18µs making 1 call to Koha::Schema::Result::Fieldmapping::BEGIN@14
# spent 10µs making 1 call to warnings::import |
15 | |||||
16 | 2 | 208µs | 2 | 161µs | # spent 87µs (12+74) within Koha::Schema::Result::Fieldmapping::BEGIN@16 which was called:
# once (12µs+74µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 87µs making 1 call to Koha::Schema::Result::Fieldmapping::BEGIN@16
# spent 74µs making 1 call to base::import |
17 | |||||
18 | =head1 TABLE: C<fieldmapping> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 22µs | 1 | 333µs | __PACKAGE__->table("fieldmapping"); # spent 333µ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 field | ||||
33 | |||||
34 | data_type: 'varchar' | ||||
35 | is_nullable: 0 | ||||
36 | size: 255 | ||||
37 | |||||
38 | =head2 frameworkcode | ||||
39 | |||||
40 | data_type: 'char' | ||||
41 | default_value: (empty string) | ||||
42 | is_nullable: 0 | ||||
43 | size: 4 | ||||
44 | |||||
45 | =head2 fieldcode | ||||
46 | |||||
47 | data_type: 'char' | ||||
48 | is_nullable: 0 | ||||
49 | size: 3 | ||||
50 | |||||
51 | =head2 subfieldcode | ||||
52 | |||||
53 | data_type: 'char' | ||||
54 | is_nullable: 0 | ||||
55 | size: 1 | ||||
56 | |||||
57 | =cut | ||||
58 | |||||
59 | 1 | 21µs | 1 | 2.38ms | __PACKAGE__->add_columns( # spent 2.38ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
60 | "id", | ||||
61 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
62 | "field", | ||||
63 | { data_type => "varchar", is_nullable => 0, size => 255 }, | ||||
64 | "frameworkcode", | ||||
65 | { data_type => "char", default_value => "", is_nullable => 0, size => 4 }, | ||||
66 | "fieldcode", | ||||
67 | { data_type => "char", is_nullable => 0, size => 3 }, | ||||
68 | "subfieldcode", | ||||
69 | { data_type => "char", is_nullable => 0, size => 1 }, | ||||
70 | ); | ||||
71 | |||||
72 | =head1 PRIMARY KEY | ||||
73 | |||||
74 | =over 4 | ||||
75 | |||||
76 | =item * L</id> | ||||
77 | |||||
78 | =back | ||||
79 | |||||
80 | =cut | ||||
81 | |||||
82 | 1 | 18µs | 1 | 82µs | __PACKAGE__->set_primary_key("id"); # spent 82µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
83 | |||||
84 | |||||
85 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
86 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x+izN6nqxs+W/g/demOpOg | ||||
87 | |||||
88 | |||||
89 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
90 | 1 | 6µs | 1; |