| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Notify.pm |
| Statements | Executed 11 statements in 413µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 28µs | 32µs | Class::C3::Componentised::BEGIN@1.1493 |
| 1 | 1 | 1 | 10µs | 20µs | Koha::Schema::Result::Notify::BEGIN@13 |
| 1 | 1 | 1 | 10µs | 82µs | Koha::Schema::Result::Notify::BEGIN@16 |
| 1 | 1 | 1 | 8µs | 17µs | Koha::Schema::Result::Notify::BEGIN@14 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 69µs | 2 | 36µs | # spent 32µs (28+4) within Class::C3::Componentised::BEGIN@1.1493 which was called:
# once (28µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 32µs making 1 call to Class::C3::Componentised::BEGIN@1.1493
# spent 4µs making 1 call to utf8::import |
| 2 | package Koha::Schema::Result::Notify; | ||||
| 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::Notify | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 39µs | 2 | 29µs | # spent 20µs (10+10) within Koha::Schema::Result::Notify::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::Notify::BEGIN@13
# spent 10µs making 1 call to strict::import |
| 14 | 2 | 38µs | 2 | 25µs | # spent 17µs (8+8) within Koha::Schema::Result::Notify::BEGIN@14 which was called:
# once (8µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 17µs making 1 call to Koha::Schema::Result::Notify::BEGIN@14
# spent 8µs making 1 call to warnings::import |
| 15 | |||||
| 16 | 2 | 206µs | 2 | 153µs | # spent 82µs (10+71) within Koha::Schema::Result::Notify::BEGIN@16 which was called:
# once (10µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 82µs making 1 call to Koha::Schema::Result::Notify::BEGIN@16
# spent 71µs making 1 call to base::import |
| 17 | |||||
| 18 | =head1 TABLE: C<notifys> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 20µs | 1 | 546µs | __PACKAGE__->table("notifys"); # spent 546µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 notify_id | ||||
| 27 | |||||
| 28 | data_type: 'integer' | ||||
| 29 | default_value: 0 | ||||
| 30 | is_nullable: 0 | ||||
| 31 | |||||
| 32 | =head2 borrowernumber | ||||
| 33 | |||||
| 34 | data_type: 'integer' | ||||
| 35 | default_value: 0 | ||||
| 36 | is_nullable: 0 | ||||
| 37 | |||||
| 38 | =head2 itemnumber | ||||
| 39 | |||||
| 40 | data_type: 'integer' | ||||
| 41 | default_value: 0 | ||||
| 42 | is_nullable: 0 | ||||
| 43 | |||||
| 44 | =head2 notify_date | ||||
| 45 | |||||
| 46 | data_type: 'date' | ||||
| 47 | datetime_undef_if_invalid: 1 | ||||
| 48 | is_nullable: 1 | ||||
| 49 | |||||
| 50 | =head2 notify_send_date | ||||
| 51 | |||||
| 52 | data_type: 'date' | ||||
| 53 | datetime_undef_if_invalid: 1 | ||||
| 54 | is_nullable: 1 | ||||
| 55 | |||||
| 56 | =head2 notify_level | ||||
| 57 | |||||
| 58 | data_type: 'integer' | ||||
| 59 | default_value: 0 | ||||
| 60 | is_nullable: 0 | ||||
| 61 | |||||
| 62 | =head2 method | ||||
| 63 | |||||
| 64 | data_type: 'varchar' | ||||
| 65 | default_value: (empty string) | ||||
| 66 | is_nullable: 0 | ||||
| 67 | size: 20 | ||||
| 68 | |||||
| 69 | =cut | ||||
| 70 | |||||
| 71 | 1 | 34µs | 1 | 3.10ms | __PACKAGE__->add_columns( # spent 3.10ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
| 72 | "notify_id", | ||||
| 73 | { data_type => "integer", default_value => 0, is_nullable => 0 }, | ||||
| 74 | "borrowernumber", | ||||
| 75 | { data_type => "integer", default_value => 0, is_nullable => 0 }, | ||||
| 76 | "itemnumber", | ||||
| 77 | { data_type => "integer", default_value => 0, is_nullable => 0 }, | ||||
| 78 | "notify_date", | ||||
| 79 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
| 80 | "notify_send_date", | ||||
| 81 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
| 82 | "notify_level", | ||||
| 83 | { data_type => "integer", default_value => 0, is_nullable => 0 }, | ||||
| 84 | "method", | ||||
| 85 | { data_type => "varchar", default_value => "", is_nullable => 0, size => 20 }, | ||||
| 86 | ); | ||||
| 87 | |||||
| 88 | |||||
| 89 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
| 90 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sQc1HF4rGwsMBh6uFNKUnQ | ||||
| 91 | |||||
| 92 | |||||
| 93 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 94 | 1 | 8µs | 1; |