| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/AudioAlert.pm |
| Statements | Executed 12 statements in 458µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 28µs | 32µs | Class::C3::Componentised::BEGIN@1.651 |
| 1 | 1 | 1 | 13µs | 91µs | Koha::Schema::Result::AudioAlert::BEGIN@16 |
| 1 | 1 | 1 | 11µs | 20µs | Koha::Schema::Result::AudioAlert::BEGIN@13 |
| 1 | 1 | 1 | 9µs | 16µs | Koha::Schema::Result::AudioAlert::BEGIN@14 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 72µs | 2 | 36µs | # spent 32µs (28+4) within Class::C3::Componentised::BEGIN@1.651 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.651
# spent 4µs making 1 call to utf8::import |
| 2 | package Koha::Schema::Result::AudioAlert; | ||||
| 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::AudioAlert | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 40µs | 2 | 30µs | # spent 20µs (11+10) within Koha::Schema::Result::AudioAlert::BEGIN@13 which was called:
# once (11µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 20µs making 1 call to Koha::Schema::Result::AudioAlert::BEGIN@13
# spent 10µs making 1 call to strict::import |
| 14 | 2 | 39µs | 2 | 24µs | # spent 16µs (9+8) within Koha::Schema::Result::AudioAlert::BEGIN@14 which was called:
# once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 16µs making 1 call to Koha::Schema::Result::AudioAlert::BEGIN@14
# spent 8µs making 1 call to warnings::import |
| 15 | |||||
| 16 | 2 | 229µs | 2 | 168µs | # spent 91µs (13+77) within Koha::Schema::Result::AudioAlert::BEGIN@16 which was called:
# once (13µs+77µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 91µs making 1 call to Koha::Schema::Result::AudioAlert::BEGIN@16
# spent 77µs making 1 call to base::import |
| 17 | |||||
| 18 | =head1 TABLE: C<audio_alerts> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 25µs | 1 | 374µs | __PACKAGE__->table("audio_alerts"); # spent 374µ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 precedence | ||||
| 33 | |||||
| 34 | data_type: 'smallint' | ||||
| 35 | extra: {unsigned => 1} | ||||
| 36 | is_nullable: 0 | ||||
| 37 | |||||
| 38 | =head2 selector | ||||
| 39 | |||||
| 40 | data_type: 'varchar' | ||||
| 41 | is_nullable: 0 | ||||
| 42 | size: 255 | ||||
| 43 | |||||
| 44 | =head2 sound | ||||
| 45 | |||||
| 46 | data_type: 'varchar' | ||||
| 47 | is_nullable: 0 | ||||
| 48 | size: 255 | ||||
| 49 | |||||
| 50 | =cut | ||||
| 51 | |||||
| 52 | 1 | 27µs | 1 | 1.47ms | __PACKAGE__->add_columns( # spent 1.47ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
| 53 | "id", | ||||
| 54 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
| 55 | "precedence", | ||||
| 56 | { data_type => "smallint", extra => { unsigned => 1 }, is_nullable => 0 }, | ||||
| 57 | "selector", | ||||
| 58 | { data_type => "varchar", is_nullable => 0, size => 255 }, | ||||
| 59 | "sound", | ||||
| 60 | { data_type => "varchar", is_nullable => 0, size => 255 }, | ||||
| 61 | ); | ||||
| 62 | |||||
| 63 | =head1 PRIMARY KEY | ||||
| 64 | |||||
| 65 | =over 4 | ||||
| 66 | |||||
| 67 | =item * L</id> | ||||
| 68 | |||||
| 69 | =back | ||||
| 70 | |||||
| 71 | =cut | ||||
| 72 | |||||
| 73 | 1 | 18µs | 1 | 99µs | __PACKAGE__->set_primary_key("id"); # spent 99µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
| 74 | |||||
| 75 | |||||
| 76 | # Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-08-19 08:01:06 | ||||
| 77 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lPTnmrJd5V/X9fLebC8FHA | ||||
| 78 | |||||
| 79 | |||||
| 80 | # You can replace this text with custom code or comments, and it will be preserved on regeneration | ||||
| 81 | 1 | 7µs | 1; |