| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/BorrowerDebarment.pm |
| Statements | Executed 0 statements in 0s |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 82µs | 86µs | Class::C3::Componentised::BEGIN@1.2220 |
| 1 | 1 | 1 | 19µs | 30µs | Koha::Schema::Result::BorrowerDebarment::BEGIN@14 |
| 1 | 1 | 1 | 13µs | 143µs | Koha::Schema::Result::BorrowerDebarment::BEGIN@16 |
| 1 | 1 | 1 | 10µs | 22µs | Koha::Schema::Result::BorrowerDebarment::BEGIN@13 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 90µs | # spent 86µs (82+4) within Class::C3::Componentised::BEGIN@1.2220 which was called:
# once (82µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 86µs making 1 call to Class::C3::Componentised::BEGIN@1.2220
# spent 4µs making 1 call to utf8::import | ||
| 2 | package Koha::Schema::Result::BorrowerDebarment; | ||||
| 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::BorrowerDebarment | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 33µs | # spent 22µs (10+12) within Koha::Schema::Result::BorrowerDebarment::BEGIN@13 which was called:
# once (10µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 22µs making 1 call to Koha::Schema::Result::BorrowerDebarment::BEGIN@13
# spent 12µs making 1 call to strict::import | ||
| 14 | 2 | 41µs | # spent 30µs (19+11) within Koha::Schema::Result::BorrowerDebarment::BEGIN@14 which was called:
# once (19µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 30µs making 1 call to Koha::Schema::Result::BorrowerDebarment::BEGIN@14
# spent 11µs making 1 call to warnings::import | ||
| 15 | |||||
| 16 | 2 | 274µs | # spent 143µs (13+130) within Koha::Schema::Result::BorrowerDebarment::BEGIN@16 which was called:
# once (13µs+130µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 143µs making 1 call to Koha::Schema::Result::BorrowerDebarment::BEGIN@16
# spent 130µs making 1 call to base::import | ||
| 17 | |||||
| 18 | =head1 TABLE: C<borrower_debarments> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 362µs | __PACKAGE__->table("borrower_debarments"); # spent 362µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table | ||
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 borrower_debarment_id | ||||
| 27 | |||||
| 28 | data_type: 'integer' | ||||
| 29 | is_auto_increment: 1 | ||||
| 30 | is_nullable: 0 | ||||
| 31 | |||||
| 32 | =head2 borrowernumber | ||||
| 33 | |||||
| 34 | data_type: 'integer' | ||||
| 35 | is_foreign_key: 1 | ||||
| 36 | is_nullable: 0 | ||||
| 37 | |||||
| 38 | =head2 expiration | ||||
| 39 | |||||
| 40 | data_type: 'date' | ||||
| 41 | datetime_undef_if_invalid: 1 | ||||
| 42 | is_nullable: 1 | ||||
| 43 | |||||
| 44 | =head2 type | ||||
| 45 | |||||
| 46 | data_type: 'enum' | ||||
| 47 | default_value: 'MANUAL' | ||||
| 48 | extra: {list => ["SUSPENSION","OVERDUES","MANUAL","DISCHARGE"]} | ||||
| 49 | is_nullable: 0 | ||||
| 50 | |||||
| 51 | =head2 comment | ||||
| 52 | |||||
| 53 | data_type: 'text' | ||||
| 54 | is_nullable: 1 | ||||
| 55 | |||||
| 56 | =head2 manager_id | ||||
| 57 | |||||
| 58 | data_type: 'integer' | ||||
| 59 | is_nullable: 1 | ||||
| 60 | |||||
| 61 | =head2 created | ||||
| 62 | |||||
| 63 | data_type: 'timestamp' | ||||
| 64 | datetime_undef_if_invalid: 1 | ||||
| 65 | default_value: current_timestamp | ||||
| 66 | is_nullable: 0 | ||||
| 67 | |||||
| 68 | =head2 updated | ||||
| 69 | |||||
| 70 | data_type: 'timestamp' | ||||
| 71 | datetime_undef_if_invalid: 1 | ||||
| 72 | is_nullable: 1 | ||||
| 73 | |||||
| 74 | =cut | ||||
| 75 | |||||
| 76 | 1 | 3.85ms | __PACKAGE__->add_columns( # spent 3.85ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns | ||
| 77 | "borrower_debarment_id", | ||||
| 78 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
| 79 | "borrowernumber", | ||||
| 80 | { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, | ||||
| 81 | "expiration", | ||||
| 82 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
| 83 | "type", | ||||
| 84 | { | ||||
| 85 | data_type => "enum", | ||||
| 86 | default_value => "MANUAL", | ||||
| 87 | extra => { list => ["SUSPENSION", "OVERDUES", "MANUAL", "DISCHARGE"] }, | ||||
| 88 | is_nullable => 0, | ||||
| 89 | }, | ||||
| 90 | "comment", | ||||
| 91 | { data_type => "text", is_nullable => 1 }, | ||||
| 92 | "manager_id", | ||||
| 93 | { data_type => "integer", is_nullable => 1 }, | ||||
| 94 | "created", | ||||
| 95 | { | ||||
| 96 | data_type => "timestamp", | ||||
| 97 | datetime_undef_if_invalid => 1, | ||||
| 98 | default_value => \"current_timestamp", | ||||
| 99 | is_nullable => 0, | ||||
| 100 | }, | ||||
| 101 | "updated", | ||||
| 102 | { | ||||
| 103 | data_type => "timestamp", | ||||
| 104 | datetime_undef_if_invalid => 1, | ||||
| 105 | is_nullable => 1, | ||||
| 106 | }, | ||||
| 107 | ); | ||||
| 108 | |||||
| 109 | =head1 PRIMARY KEY | ||||
| 110 | |||||
| 111 | =over 4 | ||||
| 112 | |||||
| 113 | =item * L</borrower_debarment_id> | ||||
| 114 | |||||
| 115 | =back | ||||
| 116 | |||||
| 117 | =cut | ||||
| 118 | |||||
| 119 | 1 | 85µs | __PACKAGE__->set_primary_key("borrower_debarment_id"); # spent 85µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key | ||
| 120 | |||||
| 121 | =head1 RELATIONS | ||||
| 122 | |||||
| 123 | =head2 borrowernumber | ||||
| 124 | |||||
| 125 | Type: belongs_to | ||||
| 126 | |||||
| 127 | Related object: L<Koha::Schema::Result::Borrower> | ||||
| 128 | |||||
| 129 | =cut | ||||
| 130 | |||||
| 131 | 1 | 386µs | __PACKAGE__->belongs_to( # spent 386µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to | ||
| 132 | "borrowernumber", | ||||
| 133 | "Koha::Schema::Result::Borrower", | ||||
| 134 | { borrowernumber => "borrowernumber" }, | ||||
| 135 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
| 136 | ); | ||||
| 137 | |||||
| 138 | |||||
| 139 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-01-07 17:25:44 | ||||
| 140 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4KkoPNcgZoANIScMWUyS/w | ||||
| 141 | |||||
| 142 | |||||
| 143 | # You can replace this text with custom code or comments, and it will be preserved on regeneration | ||||
| 144 | 1; |