| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Branchrelation.pm |
| Statements | Executed 0 statements in 0s |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 26µs | 30µs | Class::C3::Componentised::BEGIN@1.2801 |
| 1 | 1 | 1 | 10µs | 18µs | Koha::Schema::Result::Branchrelation::BEGIN@13 |
| 1 | 1 | 1 | 8µs | 13µs | Koha::Schema::Result::Branchrelation::BEGIN@14 |
| 1 | 1 | 1 | 6µs | 43µs | Koha::Schema::Result::Branchrelation::BEGIN@16 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 33µs | # spent 30µs (26+4) within Class::C3::Componentised::BEGIN@1.2801 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.2801
# spent 4µs making 1 call to utf8::import | ||
| 2 | package Koha::Schema::Result::Branchrelation; | ||||
| 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::Branchrelation | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 26µs | # spent 18µs (10+8) within Koha::Schema::Result::Branchrelation::BEGIN@13 which was called:
# once (10µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 18µs making 1 call to Koha::Schema::Result::Branchrelation::BEGIN@13
# spent 8µs making 1 call to strict::import | ||
| 14 | 2 | 19µs | # spent 13µs (8+6) within Koha::Schema::Result::Branchrelation::BEGIN@14 which was called:
# once (8µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 13µs making 1 call to Koha::Schema::Result::Branchrelation::BEGIN@14
# spent 6µs making 1 call to warnings::import | ||
| 15 | |||||
| 16 | 2 | 80µs | # spent 43µs (6+37) within Koha::Schema::Result::Branchrelation::BEGIN@16 which was called:
# once (6µs+37µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 43µs making 1 call to Koha::Schema::Result::Branchrelation::BEGIN@16
# spent 37µs making 1 call to base::import | ||
| 17 | |||||
| 18 | =head1 TABLE: C<branchrelations> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 355µs | __PACKAGE__->table("branchrelations"); # spent 355µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table | ||
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 branchcode | ||||
| 27 | |||||
| 28 | data_type: 'varchar' | ||||
| 29 | default_value: (empty string) | ||||
| 30 | is_foreign_key: 1 | ||||
| 31 | is_nullable: 0 | ||||
| 32 | size: 10 | ||||
| 33 | |||||
| 34 | =head2 categorycode | ||||
| 35 | |||||
| 36 | data_type: 'varchar' | ||||
| 37 | default_value: (empty string) | ||||
| 38 | is_foreign_key: 1 | ||||
| 39 | is_nullable: 0 | ||||
| 40 | size: 10 | ||||
| 41 | |||||
| 42 | =cut | ||||
| 43 | |||||
| 44 | 1 | 210µs | __PACKAGE__->add_columns( # spent 210µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns | ||
| 45 | "branchcode", | ||||
| 46 | { | ||||
| 47 | data_type => "varchar", | ||||
| 48 | default_value => "", | ||||
| 49 | is_foreign_key => 1, | ||||
| 50 | is_nullable => 0, | ||||
| 51 | size => 10, | ||||
| 52 | }, | ||||
| 53 | "categorycode", | ||||
| 54 | { | ||||
| 55 | data_type => "varchar", | ||||
| 56 | default_value => "", | ||||
| 57 | is_foreign_key => 1, | ||||
| 58 | is_nullable => 0, | ||||
| 59 | size => 10, | ||||
| 60 | }, | ||||
| 61 | ); | ||||
| 62 | |||||
| 63 | =head1 PRIMARY KEY | ||||
| 64 | |||||
| 65 | =over 4 | ||||
| 66 | |||||
| 67 | =item * L</branchcode> | ||||
| 68 | |||||
| 69 | =item * L</categorycode> | ||||
| 70 | |||||
| 71 | =back | ||||
| 72 | |||||
| 73 | =cut | ||||
| 74 | |||||
| 75 | 1 | 71µs | __PACKAGE__->set_primary_key("branchcode", "categorycode"); # spent 71µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key | ||
| 76 | |||||
| 77 | =head1 RELATIONS | ||||
| 78 | |||||
| 79 | =head2 branchcode | ||||
| 80 | |||||
| 81 | Type: belongs_to | ||||
| 82 | |||||
| 83 | Related object: L<Koha::Schema::Result::Branch> | ||||
| 84 | |||||
| 85 | =cut | ||||
| 86 | |||||
| 87 | 1 | 386µs | __PACKAGE__->belongs_to( # spent 386µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to | ||
| 88 | "branchcode", | ||||
| 89 | "Koha::Schema::Result::Branch", | ||||
| 90 | { branchcode => "branchcode" }, | ||||
| 91 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
| 92 | ); | ||||
| 93 | |||||
| 94 | =head2 categorycode | ||||
| 95 | |||||
| 96 | Type: belongs_to | ||||
| 97 | |||||
| 98 | Related object: L<Koha::Schema::Result::Branchcategory> | ||||
| 99 | |||||
| 100 | =cut | ||||
| 101 | |||||
| 102 | 1 | 214µs | __PACKAGE__->belongs_to( # spent 214µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to | ||
| 103 | "categorycode", | ||||
| 104 | "Koha::Schema::Result::Branchcategory", | ||||
| 105 | { categorycode => "categorycode" }, | ||||
| 106 | { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, | ||||
| 107 | ); | ||||
| 108 | |||||
| 109 | |||||
| 110 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
| 111 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lBOq8k+wurbp633kbi8tVg | ||||
| 112 | |||||
| 113 | |||||
| 114 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 115 | 1; |