| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/City.pm |
| Statements | Executed 12 statements in 511µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 36µs | 41µs | Class::C3::Componentised::BEGIN@1.761 |
| 1 | 1 | 1 | 12µs | 105µs | Koha::Schema::Result::City::BEGIN@16 |
| 1 | 1 | 1 | 11µs | 20µs | Koha::Schema::Result::City::BEGIN@14 |
| 1 | 1 | 1 | 11µs | 23µs | Koha::Schema::Result::City::BEGIN@13 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 83µs | 2 | 46µs | # spent 41µs (36+5) within Class::C3::Componentised::BEGIN@1.761 which was called:
# once (36µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 41µs making 1 call to Class::C3::Componentised::BEGIN@1.761
# spent 5µs making 1 call to utf8::import |
| 2 | package Koha::Schema::Result::City; | ||||
| 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::City | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 46µs | 2 | 36µs | # spent 23µs (11+12) within Koha::Schema::Result::City::BEGIN@13 which was called:
# once (11µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 23µs making 1 call to Koha::Schema::Result::City::BEGIN@13
# spent 12µs making 1 call to strict::import |
| 14 | 2 | 48µs | 2 | 29µs | # spent 20µs (11+9) within Koha::Schema::Result::City::BEGIN@14 which was called:
# once (11µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 20µs making 1 call to Koha::Schema::Result::City::BEGIN@14
# spent 9µs making 1 call to warnings::import |
| 15 | |||||
| 16 | 2 | 235µs | 2 | 199µs | # spent 105µs (12+94) within Koha::Schema::Result::City::BEGIN@16 which was called:
# once (12µs+94µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 105µs making 1 call to Koha::Schema::Result::City::BEGIN@16
# spent 94µs making 1 call to base::import |
| 17 | |||||
| 18 | =head1 TABLE: C<cities> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 29µs | 1 | 419µs | __PACKAGE__->table("cities"); # spent 419µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 cityid | ||||
| 27 | |||||
| 28 | data_type: 'integer' | ||||
| 29 | is_auto_increment: 1 | ||||
| 30 | is_nullable: 0 | ||||
| 31 | |||||
| 32 | =head2 city_name | ||||
| 33 | |||||
| 34 | data_type: 'varchar' | ||||
| 35 | default_value: (empty string) | ||||
| 36 | is_nullable: 0 | ||||
| 37 | size: 100 | ||||
| 38 | |||||
| 39 | =head2 city_state | ||||
| 40 | |||||
| 41 | data_type: 'varchar' | ||||
| 42 | is_nullable: 1 | ||||
| 43 | size: 100 | ||||
| 44 | |||||
| 45 | =head2 city_country | ||||
| 46 | |||||
| 47 | data_type: 'varchar' | ||||
| 48 | is_nullable: 1 | ||||
| 49 | size: 100 | ||||
| 50 | |||||
| 51 | =head2 city_zipcode | ||||
| 52 | |||||
| 53 | data_type: 'varchar' | ||||
| 54 | is_nullable: 1 | ||||
| 55 | size: 20 | ||||
| 56 | |||||
| 57 | =cut | ||||
| 58 | |||||
| 59 | 1 | 30µs | 1 | 2.75ms | __PACKAGE__->add_columns( # spent 2.75ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
| 60 | "cityid", | ||||
| 61 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
| 62 | "city_name", | ||||
| 63 | { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, | ||||
| 64 | "city_state", | ||||
| 65 | { data_type => "varchar", is_nullable => 1, size => 100 }, | ||||
| 66 | "city_country", | ||||
| 67 | { data_type => "varchar", is_nullable => 1, size => 100 }, | ||||
| 68 | "city_zipcode", | ||||
| 69 | { data_type => "varchar", is_nullable => 1, size => 20 }, | ||||
| 70 | ); | ||||
| 71 | |||||
| 72 | =head1 PRIMARY KEY | ||||
| 73 | |||||
| 74 | =over 4 | ||||
| 75 | |||||
| 76 | =item * L</cityid> | ||||
| 77 | |||||
| 78 | =back | ||||
| 79 | |||||
| 80 | =cut | ||||
| 81 | |||||
| 82 | 1 | 30µs | 1 | 126µs | __PACKAGE__->set_primary_key("cityid"); # spent 126µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
| 83 | |||||
| 84 | |||||
| 85 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
| 86 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zEjfS65sp13yF7dH8/ojZQ | ||||
| 87 | |||||
| 88 | |||||
| 89 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 90 | 1 | 11µs | 1; |