Filename | /home/vagrant/kohaclone/Koha/Schema/Result/ActionLogs.pm |
Statements | Executed 10 statements in 350µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 29µs | 42µs | BEGIN@6 | Koha::Schema::Result::ActionLogs::
1 | 1 | 1 | 11µs | 91µs | BEGIN@9 | Koha::Schema::Result::ActionLogs::
1 | 1 | 1 | 10µs | 20µs | BEGIN@7 | Koha::Schema::Result::ActionLogs::
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 | 51µs | 2 | 56µs | # spent 42µs (29+13) within Koha::Schema::Result::ActionLogs::BEGIN@6 which was called:
# once (29µs+13µs) by Class::C3::Componentised::ensure_class_loaded at line 6 # spent 42µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@6
# spent 13µs making 1 call to strict::import |
7 | 2 | 41µs | 2 | 29µs | # spent 20µs (10+9) within Koha::Schema::Result::ActionLogs::BEGIN@7 which was called:
# once (10µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 7 # spent 20µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@7
# spent 9µs making 1 call to warnings::import |
8 | |||||
9 | 2 | 212µs | 2 | 172µs | # spent 91µs (11+81) within Koha::Schema::Result::ActionLogs::BEGIN@9 which was called:
# once (11µs+81µs) by Class::C3::Componentised::ensure_class_loaded at line 9 # spent 91µs making 1 call to Koha::Schema::Result::ActionLogs::BEGIN@9
# spent 81µs making 1 call to base::import |
10 | |||||
11 | |||||
12 | =head1 NAME | ||||
13 | |||||
14 | Koha::Schema::Result::ActionLogs | ||||
15 | |||||
16 | =cut | ||||
17 | |||||
18 | 1 | 200ns | 1 | 188µs | __PACKAGE__->table("action_logs"); # spent 188µ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 | 21µs | 1 | 600µs | __PACKAGE__->add_columns( # spent 600µs 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 | 17µs | 1 | 74µs | __PACKAGE__->set_primary_key("action_id"); # spent 74µ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 | 7µs | 1; |