Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / Statistic.pm
blobd6fd976f651e953afeea47d8eb8dbd69ad09b6b7
1 use utf8;
2 package Koha::Schema::Result::Statistic;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Statistic
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<statistics>
20 =cut
22 __PACKAGE__->table("statistics");
24 =head1 ACCESSORS
26 =head2 datetime
28 data_type: 'datetime'
29 datetime_undef_if_invalid: 1
30 is_nullable: 1
32 =head2 branch
34 data_type: 'varchar'
35 is_nullable: 1
36 size: 10
38 =head2 proccode
40 data_type: 'varchar'
41 is_nullable: 1
42 size: 4
44 =head2 value
46 data_type: 'double precision'
47 is_nullable: 1
48 size: [16,4]
50 =head2 type
52 data_type: 'varchar'
53 is_nullable: 1
54 size: 16
56 =head2 other
58 data_type: 'mediumtext'
59 is_nullable: 1
61 =head2 usercode
63 data_type: 'varchar'
64 is_nullable: 1
65 size: 10
67 =head2 itemnumber
69 data_type: 'integer'
70 is_nullable: 1
72 =head2 itemtype
74 data_type: 'varchar'
75 is_nullable: 1
76 size: 10
78 =head2 borrowernumber
80 data_type: 'integer'
81 is_nullable: 1
83 =head2 associatedborrower
85 data_type: 'integer'
86 is_nullable: 1
88 =head2 ccode
90 data_type: 'varchar'
91 is_nullable: 1
92 size: 10
94 =cut
96 __PACKAGE__->add_columns(
97 "datetime",
99 data_type => "datetime",
100 datetime_undef_if_invalid => 1,
101 is_nullable => 1,
103 "branch",
104 { data_type => "varchar", is_nullable => 1, size => 10 },
105 "proccode",
106 { data_type => "varchar", is_nullable => 1, size => 4 },
107 "value",
108 { data_type => "double precision", is_nullable => 1, size => [16, 4] },
109 "type",
110 { data_type => "varchar", is_nullable => 1, size => 16 },
111 "other",
112 { data_type => "mediumtext", is_nullable => 1 },
113 "usercode",
114 { data_type => "varchar", is_nullable => 1, size => 10 },
115 "itemnumber",
116 { data_type => "integer", is_nullable => 1 },
117 "itemtype",
118 { data_type => "varchar", is_nullable => 1, size => 10 },
119 "borrowernumber",
120 { data_type => "integer", is_nullable => 1 },
121 "associatedborrower",
122 { data_type => "integer", is_nullable => 1 },
123 "ccode",
124 { data_type => "varchar", is_nullable => 1, size => 10 },
128 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
129 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:THELVmdFFi1RCI4DfqwGIw
132 # You can replace this text with custom content, and it will be preserved on regeneration