Bug 18316: DBRev 18.06.00.054
[koha.git] / Koha / Schema / Result / Statistic.pm
1 use utf8;
2 package Koha::Schema::Result::Statistic;
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::Statistic
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<statistics>
19
20 =cut
21
22 __PACKAGE__->table("statistics");
23
24 =head1 ACCESSORS
25
26 =head2 datetime
27
28   data_type: 'datetime'
29   datetime_undef_if_invalid: 1
30   is_nullable: 1
31
32 =head2 branch
33
34   data_type: 'varchar'
35   is_nullable: 1
36   size: 10
37
38 =head2 proccode
39
40   data_type: 'varchar'
41   is_nullable: 1
42   size: 4
43
44 =head2 value
45
46   data_type: 'double precision'
47   is_nullable: 1
48   size: [16,4]
49
50 =head2 type
51
52   data_type: 'varchar'
53   is_nullable: 1
54   size: 16
55
56 =head2 other
57
58   data_type: 'longtext'
59   is_nullable: 1
60
61 =head2 usercode
62
63   data_type: 'varchar'
64   is_nullable: 1
65   size: 10
66
67 =head2 itemnumber
68
69   data_type: 'integer'
70   is_nullable: 1
71
72 =head2 itemtype
73
74   data_type: 'varchar'
75   is_nullable: 1
76   size: 10
77
78 =head2 location
79
80   data_type: 'varchar'
81   is_nullable: 1
82   size: 80
83
84 =head2 borrowernumber
85
86   data_type: 'integer'
87   is_nullable: 1
88
89 =head2 associatedborrower
90
91   data_type: 'integer'
92   is_nullable: 1
93
94 =head2 ccode
95
96   data_type: 'varchar'
97   is_nullable: 1
98   size: 80
99
100 =cut
101
102 __PACKAGE__->add_columns(
103   "datetime",
104   {
105     data_type => "datetime",
106     datetime_undef_if_invalid => 1,
107     is_nullable => 1,
108   },
109   "branch",
110   { data_type => "varchar", is_nullable => 1, size => 10 },
111   "proccode",
112   { data_type => "varchar", is_nullable => 1, size => 4 },
113   "value",
114   { data_type => "double precision", is_nullable => 1, size => [16, 4] },
115   "type",
116   { data_type => "varchar", is_nullable => 1, size => 16 },
117   "other",
118   { data_type => "longtext", is_nullable => 1 },
119   "usercode",
120   { data_type => "varchar", is_nullable => 1, size => 10 },
121   "itemnumber",
122   { data_type => "integer", is_nullable => 1 },
123   "itemtype",
124   { data_type => "varchar", is_nullable => 1, size => 10 },
125   "location",
126   { data_type => "varchar", is_nullable => 1, size => 80 },
127   "borrowernumber",
128   { data_type => "integer", is_nullable => 1 },
129   "associatedborrower",
130   { data_type => "integer", is_nullable => 1 },
131   "ccode",
132   { data_type => "varchar", is_nullable => 1, size => 80 },
133 );
134
135
136 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 16:15:09
137 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OECp3uSP488L8TUoS1HseQ
138
139
140 # You can replace this text with custom content, and it will be preserved on regeneration
141 1;