| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Review.pm |
| Statements | Executed 0 statements in 0s |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 84µs | 88µs | Class::C3::Componentised::BEGIN@1.2012 |
| 1 | 1 | 1 | 11µs | 82µs | Koha::Schema::Result::Review::BEGIN@16 |
| 1 | 1 | 1 | 10µs | 22µs | Koha::Schema::Result::Review::BEGIN@13 |
| 1 | 1 | 1 | 10µs | 18µs | Koha::Schema::Result::Review::BEGIN@14 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 93µs | # spent 88µs (84+5) within Class::C3::Componentised::BEGIN@1.2012 which was called:
# once (84µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 88µs making 1 call to Class::C3::Componentised::BEGIN@1.2012
# spent 4µs making 1 call to utf8::import | ||
| 2 | package Koha::Schema::Result::Review; | ||||
| 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::Review | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 33µs | # spent 22µs (10+11) within Koha::Schema::Result::Review::BEGIN@13 which was called:
# once (10µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 22µs making 1 call to Koha::Schema::Result::Review::BEGIN@13
# spent 12µs making 1 call to strict::import | ||
| 14 | 2 | 26µs | # spent 18µs (10+8) within Koha::Schema::Result::Review::BEGIN@14 which was called:
# once (10µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 18µs making 1 call to Koha::Schema::Result::Review::BEGIN@14
# spent 8µs making 1 call to warnings::import | ||
| 15 | |||||
| 16 | 2 | 153µs | # spent 82µs (11+71) within Koha::Schema::Result::Review::BEGIN@16 which was called:
# once (11µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 82µs making 1 call to Koha::Schema::Result::Review::BEGIN@16
# spent 71µs making 1 call to base::import | ||
| 17 | |||||
| 18 | =head1 TABLE: C<reviews> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 331µs | __PACKAGE__->table("reviews"); # spent 331µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table | ||
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 reviewid | ||||
| 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: 1 | ||||
| 37 | |||||
| 38 | =head2 biblionumber | ||||
| 39 | |||||
| 40 | data_type: 'integer' | ||||
| 41 | is_foreign_key: 1 | ||||
| 42 | is_nullable: 1 | ||||
| 43 | |||||
| 44 | =head2 review | ||||
| 45 | |||||
| 46 | data_type: 'text' | ||||
| 47 | is_nullable: 1 | ||||
| 48 | |||||
| 49 | =head2 approved | ||||
| 50 | |||||
| 51 | data_type: 'tinyint' | ||||
| 52 | is_nullable: 1 | ||||
| 53 | |||||
| 54 | =head2 datereviewed | ||||
| 55 | |||||
| 56 | data_type: 'datetime' | ||||
| 57 | datetime_undef_if_invalid: 1 | ||||
| 58 | is_nullable: 1 | ||||
| 59 | |||||
| 60 | =cut | ||||
| 61 | |||||
| 62 | 1 | 2.79ms | __PACKAGE__->add_columns( # spent 2.79ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns | ||
| 63 | "reviewid", | ||||
| 64 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
| 65 | "borrowernumber", | ||||
| 66 | { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, | ||||
| 67 | "biblionumber", | ||||
| 68 | { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, | ||||
| 69 | "review", | ||||
| 70 | { data_type => "text", is_nullable => 1 }, | ||||
| 71 | "approved", | ||||
| 72 | { data_type => "tinyint", is_nullable => 1 }, | ||||
| 73 | "datereviewed", | ||||
| 74 | { | ||||
| 75 | data_type => "datetime", | ||||
| 76 | datetime_undef_if_invalid => 1, | ||||
| 77 | is_nullable => 1, | ||||
| 78 | }, | ||||
| 79 | ); | ||||
| 80 | |||||
| 81 | =head1 PRIMARY KEY | ||||
| 82 | |||||
| 83 | =over 4 | ||||
| 84 | |||||
| 85 | =item * L</reviewid> | ||||
| 86 | |||||
| 87 | =back | ||||
| 88 | |||||
| 89 | =cut | ||||
| 90 | |||||
| 91 | 1 | 78µs | __PACKAGE__->set_primary_key("reviewid"); # spent 78µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key | ||
| 92 | |||||
| 93 | =head1 RELATIONS | ||||
| 94 | |||||
| 95 | =head2 biblionumber | ||||
| 96 | |||||
| 97 | Type: belongs_to | ||||
| 98 | |||||
| 99 | Related object: L<Koha::Schema::Result::Biblio> | ||||
| 100 | |||||
| 101 | =cut | ||||
| 102 | |||||
| 103 | 1 | 392µs | __PACKAGE__->belongs_to( # spent 392µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to | ||
| 104 | "biblionumber", | ||||
| 105 | "Koha::Schema::Result::Biblio", | ||||
| 106 | { biblionumber => "biblionumber" }, | ||||
| 107 | { | ||||
| 108 | is_deferrable => 1, | ||||
| 109 | join_type => "LEFT", | ||||
| 110 | on_delete => "CASCADE", | ||||
| 111 | on_update => "CASCADE", | ||||
| 112 | }, | ||||
| 113 | ); | ||||
| 114 | |||||
| 115 | =head2 borrowernumber | ||||
| 116 | |||||
| 117 | Type: belongs_to | ||||
| 118 | |||||
| 119 | Related object: L<Koha::Schema::Result::Borrower> | ||||
| 120 | |||||
| 121 | =cut | ||||
| 122 | |||||
| 123 | 1 | 199µs | __PACKAGE__->belongs_to( # spent 199µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to | ||
| 124 | "borrowernumber", | ||||
| 125 | "Koha::Schema::Result::Borrower", | ||||
| 126 | { borrowernumber => "borrowernumber" }, | ||||
| 127 | { | ||||
| 128 | is_deferrable => 1, | ||||
| 129 | join_type => "LEFT", | ||||
| 130 | on_delete => "SET NULL", | ||||
| 131 | on_update => "CASCADE", | ||||
| 132 | }, | ||||
| 133 | ); | ||||
| 134 | |||||
| 135 | |||||
| 136 | # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 | ||||
| 137 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u+R08bCdVQA697aPo9zEUA | ||||
| 138 | |||||
| 139 | |||||
| 140 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 141 | 1; |