Bug 13178: DBIC Schema changes
[koha.git] / Koha / Schema / Result / TmpHoldsqueue.pm
1 use utf8;
2 package Koha::Schema::Result::TmpHoldsqueue;
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::TmpHoldsqueue
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<tmp_holdsqueue>
19
20 =cut
21
22 __PACKAGE__->table("tmp_holdsqueue");
23
24 =head1 ACCESSORS
25
26 =head2 biblionumber
27
28   data_type: 'integer'
29   is_nullable: 1
30
31 =head2 itemnumber
32
33   data_type: 'integer'
34   is_nullable: 1
35
36 =head2 barcode
37
38   data_type: 'varchar'
39   is_nullable: 1
40   size: 20
41
42 =head2 surname
43
44   data_type: 'mediumtext'
45   is_nullable: 0
46
47 =head2 firstname
48
49   data_type: 'text'
50   is_nullable: 1
51
52 =head2 phone
53
54   data_type: 'text'
55   is_nullable: 1
56
57 =head2 borrowernumber
58
59   data_type: 'integer'
60   is_nullable: 0
61
62 =head2 cardnumber
63
64   data_type: 'varchar'
65   is_nullable: 1
66   size: 32
67
68 =head2 reservedate
69
70   data_type: 'date'
71   datetime_undef_if_invalid: 1
72   is_nullable: 1
73
74 =head2 title
75
76   data_type: 'mediumtext'
77   is_nullable: 1
78
79 =head2 itemcallnumber
80
81   data_type: 'varchar'
82   is_nullable: 1
83   size: 255
84
85 =head2 holdingbranch
86
87   data_type: 'varchar'
88   is_nullable: 1
89   size: 10
90
91 =head2 pickbranch
92
93   data_type: 'varchar'
94   is_nullable: 1
95   size: 10
96
97 =head2 notes
98
99   data_type: 'text'
100   is_nullable: 1
101
102 =head2 item_level_request
103
104   data_type: 'tinyint'
105   default_value: 0
106   is_nullable: 0
107
108 =cut
109
110 __PACKAGE__->add_columns(
111   "biblionumber",
112   { data_type => "integer", is_nullable => 1 },
113   "itemnumber",
114   { data_type => "integer", is_nullable => 1 },
115   "barcode",
116   { data_type => "varchar", is_nullable => 1, size => 20 },
117   "surname",
118   { data_type => "mediumtext", is_nullable => 0 },
119   "firstname",
120   { data_type => "text", is_nullable => 1 },
121   "phone",
122   { data_type => "text", is_nullable => 1 },
123   "borrowernumber",
124   { data_type => "integer", is_nullable => 0 },
125   "cardnumber",
126   { data_type => "varchar", is_nullable => 1, size => 32 },
127   "reservedate",
128   { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
129   "title",
130   { data_type => "mediumtext", is_nullable => 1 },
131   "itemcallnumber",
132   { data_type => "varchar", is_nullable => 1, size => 255 },
133   "holdingbranch",
134   { data_type => "varchar", is_nullable => 1, size => 10 },
135   "pickbranch",
136   { data_type => "varchar", is_nullable => 1, size => 10 },
137   "notes",
138   { data_type => "text", is_nullable => 1 },
139   "item_level_request",
140   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
141 );
142
143
144 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-27 13:24:06
145 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2uCsPkQk5ul3ntBdbKFx8Q
146
147
148 # You can replace this text with custom content, and it will be preserved on regeneration
149 1;