| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/ActionLogs.pm |
| Statements | Executed 0 statements in 0s |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 20µs | 30µs | Koha::Schema::Result::ActionLogs::BEGIN@6 |
| 1 | 1 | 1 | 10µs | 78µs | Koha::Schema::Result::ActionLogs::BEGIN@9 |
| 1 | 1 | 1 | 9µs | 16µs | Koha::Schema::Result::ActionLogs::BEGIN@7 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package Koha::Schema::Result::ActionLogs; | ||||
| 2 | |||||
| 3 | # Created by DBIx::Class::Schema::Loader | ||||
| 4 | # DO NOT MODIFY THE FIRST PART OF THIS FILE | ||||
| 5 | |||||
| 6 | 2 | 40µs | # spent 30µs (20+10) within Koha::Schema::Result::ActionLogs::BEGIN@6 which was called:
# once (20µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 6 # spent 30µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@6
# spent 10µs making 1 call to strict::import | ||
| 7 | 2 | 23µs | # spent 16µs (9+7) within Koha::Schema::Result::ActionLogs::BEGIN@7 which was called:
# once (9µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 7 # spent 16µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@7
# spent 7µs making 1 call to warnings::import | ||
| 8 | |||||
| 9 | 2 | 146µs | # spent 78µs (10+68) within Koha::Schema::Result::ActionLogs::BEGIN@9 which was called:
# once (10µs+68µs) by Class::C3::Componentised::ensure_class_loaded at line 9 # spent 78µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@9
# spent 68µs making 1 call to base::import | ||
| 10 | |||||
| 11 | |||||
| 12 | =head1 NAME | ||||
| 13 | |||||
| 14 | Koha::Schema::Result::ActionLogs | ||||
| 15 | |||||
| 16 | =cut | ||||
| 17 | |||||
| 18 | 1 | 302µs | __PACKAGE__->table("action_logs"); # spent 302µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table | ||
| 19 | |||||
| 20 | =head1 ACCESSORS | ||||
| 21 | |||||
| 22 | =head2 action_id | ||||
| 23 | |||||
| 24 | data_type: 'integer' | ||||
| 25 | is_auto_increment: 1 | ||||
| 26 | is_nullable: 0 | ||||
| 27 | |||||
| 28 | =head2 timestamp | ||||
| 29 | |||||
| 30 | data_type: 'timestamp' | ||||
| 31 | default_value: current_timestamp | ||||
| 32 | is_nullable: 0 | ||||
| 33 | |||||
| 34 | =head2 user | ||||
| 35 | |||||
| 36 | data_type: 'integer' | ||||
| 37 | default_value: 0 | ||||
| 38 | is_nullable: 0 | ||||
| 39 | |||||
| 40 | =head2 module | ||||
| 41 | |||||
| 42 | data_type: 'text' | ||||
| 43 | is_nullable: 1 | ||||
| 44 | |||||
| 45 | =head2 action | ||||
| 46 | |||||
| 47 | data_type: 'text' | ||||
| 48 | is_nullable: 1 | ||||
| 49 | |||||
| 50 | =head2 object | ||||
| 51 | |||||
| 52 | data_type: 'integer' | ||||
| 53 | is_nullable: 1 | ||||
| 54 | |||||
| 55 | =head2 info | ||||
| 56 | |||||
| 57 | data_type: 'text' | ||||
| 58 | is_nullable: 1 | ||||
| 59 | |||||
| 60 | =cut | ||||
| 61 | |||||
| 62 | 1 | 7.40ms | __PACKAGE__->add_columns( # spent 7.40ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns | ||
| 63 | "action_id", | ||||
| 64 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
| 65 | "timestamp", | ||||
| 66 | { | ||||
| 67 | data_type => "timestamp", | ||||
| 68 | default_value => \"current_timestamp", | ||||
| 69 | is_nullable => 0, | ||||
| 70 | }, | ||||
| 71 | "user", | ||||
| 72 | { data_type => "integer", default_value => 0, is_nullable => 0 }, | ||||
| 73 | "module", | ||||
| 74 | { data_type => "text", is_nullable => 1 }, | ||||
| 75 | "action", | ||||
| 76 | { data_type => "text", is_nullable => 1 }, | ||||
| 77 | "object", | ||||
| 78 | { data_type => "integer", is_nullable => 1 }, | ||||
| 79 | "info", | ||||
| 80 | { data_type => "text", is_nullable => 1 }, | ||||
| 81 | ); | ||||
| 82 | 1 | 87µs | __PACKAGE__->set_primary_key("action_id"); # spent 87µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key | ||
| 83 | |||||
| 84 | |||||
| 85 | # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15 | ||||
| 86 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9VN0SGNBYM/thO7QzQB4Bg | ||||
| 87 | |||||
| 88 | |||||
| 89 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 90 | 1; |