Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / ActionLog.pm
blob054693ee9569edff9d285be320bc24befbb3b4ca
1 use utf8;
2 package Koha::Schema::Result::ActionLog;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::ActionLog
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<action_logs>
20 =cut
22 __PACKAGE__->table("action_logs");
24 =head1 ACCESSORS
26 =head2 action_id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 timestamp
34 data_type: 'timestamp'
35 datetime_undef_if_invalid: 1
36 default_value: current_timestamp
37 is_nullable: 0
39 =head2 user
41 data_type: 'integer'
42 default_value: 0
43 is_nullable: 0
45 =head2 module
47 data_type: 'text'
48 is_nullable: 1
50 =head2 action
52 data_type: 'text'
53 is_nullable: 1
55 =head2 object
57 data_type: 'integer'
58 is_nullable: 1
60 =head2 info
62 data_type: 'text'
63 is_nullable: 1
65 =cut
67 __PACKAGE__->add_columns(
68 "action_id",
69 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
70 "timestamp",
72 data_type => "timestamp",
73 datetime_undef_if_invalid => 1,
74 default_value => \"current_timestamp",
75 is_nullable => 0,
77 "user",
78 { data_type => "integer", default_value => 0, is_nullable => 0 },
79 "module",
80 { data_type => "text", is_nullable => 1 },
81 "action",
82 { data_type => "text", is_nullable => 1 },
83 "object",
84 { data_type => "integer", is_nullable => 1 },
85 "info",
86 { data_type => "text", is_nullable => 1 },
89 =head1 PRIMARY KEY
91 =over 4
93 =item * L</action_id>
95 =back
97 =cut
99 __PACKAGE__->set_primary_key("action_id");
102 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
103 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KRt26bXGF2SqTrf5u8MSig
106 # You can replace this text with custom code or comments, and it will be preserved on regeneration