| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/AuthHeader.pm |
| Statements | Executed 12 statements in 572µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 103µs | 109µs | Class::C3::Componentised::BEGIN@1.708 |
| 1 | 1 | 1 | 12µs | 93µs | Koha::Schema::Result::AuthHeader::BEGIN@16 |
| 1 | 1 | 1 | 11µs | 24µs | Koha::Schema::Result::AuthHeader::BEGIN@13 |
| 1 | 1 | 1 | 9µs | 18µs | Koha::Schema::Result::AuthHeader::BEGIN@14 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 126µs | 2 | 116µs | # spent 109µs (103+7) within Class::C3::Componentised::BEGIN@1.708 which was called:
# once (103µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 109µs making 1 call to Class::C3::Componentised::BEGIN@1.708
# spent 7µs making 1 call to utf8::import |
| 2 | package Koha::Schema::Result::AuthHeader; | ||||
| 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::AuthHeader | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 43µs | 2 | 36µs | # spent 24µs (11+12) within Koha::Schema::Result::AuthHeader::BEGIN@13 which was called:
# once (11µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 24µs making 1 call to Koha::Schema::Result::AuthHeader::BEGIN@13
# spent 12µs making 1 call to strict::import |
| 14 | 2 | 41µs | 2 | 27µs | # spent 18µs (9+9) within Koha::Schema::Result::AuthHeader::BEGIN@14 which was called:
# once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 18µs making 1 call to Koha::Schema::Result::AuthHeader::BEGIN@14
# spent 9µs making 1 call to warnings::import |
| 15 | |||||
| 16 | 2 | 267µs | 2 | 175µs | # spent 93µs (12+82) within Koha::Schema::Result::AuthHeader::BEGIN@16 which was called:
# once (12µs+82µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 93µs making 1 call to Koha::Schema::Result::AuthHeader::BEGIN@16
# spent 82µs making 1 call to base::import |
| 17 | |||||
| 18 | =head1 TABLE: C<auth_header> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 26µs | 1 | 186µs | __PACKAGE__->table("auth_header"); # spent 186µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 authid | ||||
| 27 | |||||
| 28 | data_type: 'bigint' | ||||
| 29 | extra: {unsigned => 1} | ||||
| 30 | is_auto_increment: 1 | ||||
| 31 | is_nullable: 0 | ||||
| 32 | |||||
| 33 | =head2 authtypecode | ||||
| 34 | |||||
| 35 | data_type: 'varchar' | ||||
| 36 | default_value: (empty string) | ||||
| 37 | is_nullable: 0 | ||||
| 38 | size: 10 | ||||
| 39 | |||||
| 40 | =head2 datecreated | ||||
| 41 | |||||
| 42 | data_type: 'date' | ||||
| 43 | datetime_undef_if_invalid: 1 | ||||
| 44 | is_nullable: 1 | ||||
| 45 | |||||
| 46 | =head2 modification_time | ||||
| 47 | |||||
| 48 | data_type: 'timestamp' | ||||
| 49 | datetime_undef_if_invalid: 1 | ||||
| 50 | default_value: current_timestamp | ||||
| 51 | is_nullable: 0 | ||||
| 52 | |||||
| 53 | =head2 origincode | ||||
| 54 | |||||
| 55 | data_type: 'varchar' | ||||
| 56 | is_nullable: 1 | ||||
| 57 | size: 20 | ||||
| 58 | |||||
| 59 | =head2 authtrees | ||||
| 60 | |||||
| 61 | data_type: 'mediumtext' | ||||
| 62 | is_nullable: 1 | ||||
| 63 | |||||
| 64 | =head2 marc | ||||
| 65 | |||||
| 66 | data_type: 'blob' | ||||
| 67 | is_nullable: 1 | ||||
| 68 | |||||
| 69 | =head2 linkid | ||||
| 70 | |||||
| 71 | data_type: 'bigint' | ||||
| 72 | is_nullable: 1 | ||||
| 73 | |||||
| 74 | =head2 marcxml | ||||
| 75 | |||||
| 76 | data_type: 'longtext' | ||||
| 77 | is_nullable: 0 | ||||
| 78 | |||||
| 79 | =cut | ||||
| 80 | |||||
| 81 | 1 | 32µs | 1 | 5.66ms | __PACKAGE__->add_columns( # spent 5.66ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
| 82 | "authid", | ||||
| 83 | { | ||||
| 84 | data_type => "bigint", | ||||
| 85 | extra => { unsigned => 1 }, | ||||
| 86 | is_auto_increment => 1, | ||||
| 87 | is_nullable => 0, | ||||
| 88 | }, | ||||
| 89 | "authtypecode", | ||||
| 90 | { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, | ||||
| 91 | "datecreated", | ||||
| 92 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
| 93 | "modification_time", | ||||
| 94 | { | ||||
| 95 | data_type => "timestamp", | ||||
| 96 | datetime_undef_if_invalid => 1, | ||||
| 97 | default_value => \"current_timestamp", | ||||
| 98 | is_nullable => 0, | ||||
| 99 | }, | ||||
| 100 | "origincode", | ||||
| 101 | { data_type => "varchar", is_nullable => 1, size => 20 }, | ||||
| 102 | "authtrees", | ||||
| 103 | { data_type => "mediumtext", is_nullable => 1 }, | ||||
| 104 | "marc", | ||||
| 105 | { data_type => "blob", is_nullable => 1 }, | ||||
| 106 | "linkid", | ||||
| 107 | { data_type => "bigint", is_nullable => 1 }, | ||||
| 108 | "marcxml", | ||||
| 109 | { data_type => "longtext", is_nullable => 0 }, | ||||
| 110 | ); | ||||
| 111 | |||||
| 112 | =head1 PRIMARY KEY | ||||
| 113 | |||||
| 114 | =over 4 | ||||
| 115 | |||||
| 116 | =item * L</authid> | ||||
| 117 | |||||
| 118 | =back | ||||
| 119 | |||||
| 120 | =cut | ||||
| 121 | |||||
| 122 | 1 | 23µs | 1 | 118µs | __PACKAGE__->set_primary_key("authid"); # spent 118µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
| 123 | |||||
| 124 | |||||
| 125 | # Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-29 15:07:07 | ||||
| 126 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:H93XLwvtYfEGFBes5PJCyA | ||||
| 127 | |||||
| 128 | |||||
| 129 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 130 | 1 | 14µs | 1; |