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