| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Aqcontract.pm |
| Statements | Executed 14 statements in 720µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 47µs | 53µs | Class::C3::Componentised::BEGIN@1.2528 |
| 1 | 1 | 1 | 20µs | 157µs | Koha::Schema::Result::Aqcontract::BEGIN@16 |
| 1 | 1 | 1 | 17µs | 32µs | Koha::Schema::Result::Aqcontract::BEGIN@13 |
| 1 | 1 | 1 | 13µs | 25µs | Koha::Schema::Result::Aqcontract::BEGIN@14 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 126µs | 2 | 58µs | # spent 53µs (47+6) within Class::C3::Componentised::BEGIN@1.2528 which was called:
# once (47µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 53µs making 1 call to Class::C3::Componentised::BEGIN@1.2528
# spent 6µs making 1 call to utf8::import |
| 2 | package Koha::Schema::Result::Aqcontract; | ||||
| 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::Aqcontract | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 65µs | 2 | 47µs | # spent 32µs (17+15) within Koha::Schema::Result::Aqcontract::BEGIN@13 which was called:
# once (17µs+15µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 32µs making 1 call to Koha::Schema::Result::Aqcontract::BEGIN@13
# spent 15µs making 1 call to strict::import |
| 14 | 2 | 62µs | 2 | 37µs | # spent 25µs (13+12) within Koha::Schema::Result::Aqcontract::BEGIN@14 which was called:
# once (13µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 25µs making 1 call to Koha::Schema::Result::Aqcontract::BEGIN@14
# spent 12µs making 1 call to warnings::import |
| 15 | |||||
| 16 | 2 | 356µs | 2 | 294µs | # spent 157µs (20+137) within Koha::Schema::Result::Aqcontract::BEGIN@16 which was called:
# once (20µs+137µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 157µs making 1 call to Koha::Schema::Result::Aqcontract::BEGIN@16
# spent 137µs making 1 call to base::import |
| 17 | |||||
| 18 | =head1 TABLE: C<aqcontract> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 22µs | 1 | 5.23ms | __PACKAGE__->table("aqcontract"); # spent 5.23ms making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 contractnumber | ||||
| 27 | |||||
| 28 | data_type: 'integer' | ||||
| 29 | is_auto_increment: 1 | ||||
| 30 | is_nullable: 0 | ||||
| 31 | |||||
| 32 | =head2 contractstartdate | ||||
| 33 | |||||
| 34 | data_type: 'date' | ||||
| 35 | datetime_undef_if_invalid: 1 | ||||
| 36 | is_nullable: 1 | ||||
| 37 | |||||
| 38 | =head2 contractenddate | ||||
| 39 | |||||
| 40 | data_type: 'date' | ||||
| 41 | datetime_undef_if_invalid: 1 | ||||
| 42 | is_nullable: 1 | ||||
| 43 | |||||
| 44 | =head2 contractname | ||||
| 45 | |||||
| 46 | data_type: 'varchar' | ||||
| 47 | is_nullable: 1 | ||||
| 48 | size: 50 | ||||
| 49 | |||||
| 50 | =head2 contractdescription | ||||
| 51 | |||||
| 52 | data_type: 'mediumtext' | ||||
| 53 | is_nullable: 1 | ||||
| 54 | |||||
| 55 | =head2 booksellerid | ||||
| 56 | |||||
| 57 | data_type: 'integer' | ||||
| 58 | is_foreign_key: 1 | ||||
| 59 | is_nullable: 0 | ||||
| 60 | |||||
| 61 | =cut | ||||
| 62 | |||||
| 63 | 1 | 31µs | 1 | 3.78ms | __PACKAGE__->add_columns( # spent 3.78ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
| 64 | "contractnumber", | ||||
| 65 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
| 66 | "contractstartdate", | ||||
| 67 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
| 68 | "contractenddate", | ||||
| 69 | { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, | ||||
| 70 | "contractname", | ||||
| 71 | { data_type => "varchar", is_nullable => 1, size => 50 }, | ||||
| 72 | "contractdescription", | ||||
| 73 | { data_type => "mediumtext", is_nullable => 1 }, | ||||
| 74 | "booksellerid", | ||||
| 75 | { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, | ||||
| 76 | ); | ||||
| 77 | |||||
| 78 | =head1 PRIMARY KEY | ||||
| 79 | |||||
| 80 | =over 4 | ||||
| 81 | |||||
| 82 | =item * L</contractnumber> | ||||
| 83 | |||||
| 84 | =back | ||||
| 85 | |||||
| 86 | =cut | ||||
| 87 | |||||
| 88 | 1 | 18µs | 1 | 89µs | __PACKAGE__->set_primary_key("contractnumber"); # spent 89µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
| 89 | |||||
| 90 | =head1 RELATIONS | ||||
| 91 | |||||
| 92 | =head2 aqbaskets | ||||
| 93 | |||||
| 94 | Type: has_many | ||||
| 95 | |||||
| 96 | Related object: L<Koha::Schema::Result::Aqbasket> | ||||
| 97 | |||||
| 98 | =cut | ||||
| 99 | |||||
| 100 | 1 | 10µs | 1 | 361µs | __PACKAGE__->has_many( # spent 361µs making 1 call to DBIx::Class::Relationship::HasMany::has_many |
| 101 | "aqbaskets", | ||||
| 102 | "Koha::Schema::Result::Aqbasket", | ||||
| 103 | { "foreign.contractnumber" => "self.contractnumber" }, | ||||
| 104 | { cascade_copy => 0, cascade_delete => 0 }, | ||||
| 105 | ); | ||||
| 106 | |||||
| 107 | =head2 booksellerid | ||||
| 108 | |||||
| 109 | Type: belongs_to | ||||
| 110 | |||||
| 111 | Related object: L<Koha::Schema::Result::Aqbookseller> | ||||
| 112 | |||||
| 113 | =cut | ||||
| 114 | |||||
| 115 | 1 | 18µs | 1 | 321µs | __PACKAGE__->belongs_to( # spent 321µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to |
| 116 | "booksellerid", | ||||
| 117 | "Koha::Schema::Result::Aqbookseller", | ||||
| 118 | { id => "booksellerid" }, | ||||
| 119 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
| 120 | ); | ||||
| 121 | |||||
| 122 | |||||
| 123 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
| 124 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PF3RUnj5urQYDFzxsVxOcw | ||||
| 125 | |||||
| 126 | |||||
| 127 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 128 | 1 | 12µs | 1; |