Filename | /home/vagrant/kohaclone/Koha/Schema/Result/OverduerulesTransportType.pm |
Statements | Executed 14 statements in 487µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 26µs | 29µs | BEGIN@1.1648 | Class::C3::Componentised::
1 | 1 | 1 | 10µs | 94µs | BEGIN@16 | Koha::Schema::Result::OverduerulesTransportType::
1 | 1 | 1 | 10µs | 18µs | BEGIN@13 | Koha::Schema::Result::OverduerulesTransportType::
1 | 1 | 1 | 9µs | 15µs | BEGIN@14 | Koha::Schema::Result::OverduerulesTransportType::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 75µs | 2 | 32µs | # spent 29µs (26+3) within Class::C3::Componentised::BEGIN@1.1648 which was called:
# once (26µs+3µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 29µs making 1 call to Class::C3::Componentised::BEGIN@1.1648
# spent 3µs making 1 call to utf8::import |
2 | package Koha::Schema::Result::OverduerulesTransportType; | ||||
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::OverduerulesTransportType | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 38µs | 2 | 27µs | # spent 18µs (10+9) within Koha::Schema::Result::OverduerulesTransportType::BEGIN@13 which was called:
# once (10µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 18µs making 1 call to Koha::Schema::Result::OverduerulesTransportType::BEGIN@13
# spent 8µs making 1 call to strict::import |
14 | 2 | 37µs | 2 | 21µs | # spent 15µs (9+6) within Koha::Schema::Result::OverduerulesTransportType::BEGIN@14 which was called:
# once (9µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 15µs making 1 call to Koha::Schema::Result::OverduerulesTransportType::BEGIN@14
# spent 6µs making 1 call to warnings::import |
15 | |||||
16 | 2 | 253µs | 2 | 177µs | # spent 94µs (10+83) within Koha::Schema::Result::OverduerulesTransportType::BEGIN@16 which was called:
# once (10µs+83µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 94µs making 1 call to Koha::Schema::Result::OverduerulesTransportType::BEGIN@16
# spent 83µs making 1 call to base::import |
17 | |||||
18 | =head1 TABLE: C<overduerules_transport_types> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 22µs | 1 | 345µs | __PACKAGE__->table("overduerules_transport_types"); # spent 345µ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 message_transport_type | ||||
33 | |||||
34 | data_type: 'varchar' | ||||
35 | default_value: 'email' | ||||
36 | is_foreign_key: 1 | ||||
37 | is_nullable: 0 | ||||
38 | size: 20 | ||||
39 | |||||
40 | =head2 overduerules_id | ||||
41 | |||||
42 | data_type: 'integer' | ||||
43 | is_foreign_key: 1 | ||||
44 | is_nullable: 0 | ||||
45 | |||||
46 | =cut | ||||
47 | |||||
48 | 1 | 22µs | 1 | 315µs | __PACKAGE__->add_columns( # spent 315µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
49 | "id", | ||||
50 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
51 | "message_transport_type", | ||||
52 | { | ||||
53 | data_type => "varchar", | ||||
54 | default_value => "email", | ||||
55 | is_foreign_key => 1, | ||||
56 | is_nullable => 0, | ||||
57 | size => 20, | ||||
58 | }, | ||||
59 | "overduerules_id", | ||||
60 | { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, | ||||
61 | ); | ||||
62 | |||||
63 | =head1 PRIMARY KEY | ||||
64 | |||||
65 | =over 4 | ||||
66 | |||||
67 | =item * L</id> | ||||
68 | |||||
69 | =back | ||||
70 | |||||
71 | =cut | ||||
72 | |||||
73 | 1 | 17µs | 1 | 77µs | __PACKAGE__->set_primary_key("id"); # spent 77µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
74 | |||||
75 | =head1 RELATIONS | ||||
76 | |||||
77 | =head2 message_transport_type | ||||
78 | |||||
79 | Type: belongs_to | ||||
80 | |||||
81 | Related object: L<Koha::Schema::Result::MessageTransportType> | ||||
82 | |||||
83 | =cut | ||||
84 | |||||
85 | 1 | 9µs | 1 | 368µs | __PACKAGE__->belongs_to( # spent 368µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to |
86 | "message_transport_type", | ||||
87 | "Koha::Schema::Result::MessageTransportType", | ||||
88 | { message_transport_type => "message_transport_type" }, | ||||
89 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
90 | ); | ||||
91 | |||||
92 | =head2 overduerule | ||||
93 | |||||
94 | Type: belongs_to | ||||
95 | |||||
96 | Related object: L<Koha::Schema::Result::Overduerule> | ||||
97 | |||||
98 | =cut | ||||
99 | |||||
100 | 1 | 5µs | 1 | 226µs | __PACKAGE__->belongs_to( # spent 226µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to |
101 | "overduerule", | ||||
102 | "Koha::Schema::Result::Overduerule", | ||||
103 | { overduerules_id => "overduerules_id" }, | ||||
104 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
105 | ); | ||||
106 | |||||
107 | |||||
108 | # Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-06 12:00:28 | ||||
109 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KYpSfCfzkLxRYI2pQY5Htg | ||||
110 | |||||
111 | |||||
112 | # You can replace this text with custom code or comments, and it will be preserved on regeneration | ||||
113 | 1 | 10µs | 1; |