62fd4c5f87c62fb3f8d7e7f532e30533843c43f9
[koha-equinox.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 value
39
40   data_type: 'double precision'
41   is_nullable: 1
42   size: [16,4]
43
44 =head2 type
45
46   data_type: 'varchar'
47   is_nullable: 1
48   size: 16
49
50 =head2 other
51
52   data_type: 'longtext'
53   is_nullable: 1
54
55 =head2 usercode
56
57   data_type: 'varchar'
58   is_nullable: 1
59   size: 10
60
61 =head2 itemnumber
62
63   data_type: 'integer'
64   is_nullable: 1
65
66 =head2 itemtype
67
68   data_type: 'varchar'
69   is_nullable: 1
70   size: 10
71
72 =head2 location
73
74   data_type: 'varchar'
75   is_nullable: 1
76   size: 80
77
78 =head2 borrowernumber
79
80   data_type: 'integer'
81   is_nullable: 1
82
83 =head2 associatedborrower
84
85   data_type: 'integer'
86   is_nullable: 1
87
88 =head2 ccode
89
90   data_type: 'varchar'
91   is_nullable: 1
92   size: 80
93
94 =cut
95
96 __PACKAGE__->add_columns(
97   "datetime",
98   {
99     data_type => "datetime",
100     datetime_undef_if_invalid => 1,
101     is_nullable => 1,
102   },
103   "branch",
104   { data_type => "varchar", is_nullable => 1, size => 10 },
105   "value",
106   { data_type => "double precision", is_nullable => 1, size => [16, 4] },
107   "type",
108   { data_type => "varchar", is_nullable => 1, size => 16 },
109   "other",
110   { data_type => "longtext", is_nullable => 1 },
111   "usercode",
112   { data_type => "varchar", is_nullable => 1, size => 10 },
113   "itemnumber",
114   { data_type => "integer", is_nullable => 1 },
115   "itemtype",
116   { data_type => "varchar", is_nullable => 1, size => 10 },
117   "location",
118   { data_type => "varchar", is_nullable => 1, size => 80 },
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 => 80 },
125 );
126
127
128 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-21 19:22:43
129 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lnIllYjs9funehkB7Y4jjw
130
131
132 # You can replace this text with custom content, and it will be preserved on regeneration
133 1;