Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / TmpHoldsqueue.pm
blob9f2a8e452bc5267fc6b71808cfbe62248ac58a9b
1 use utf8;
2 package Koha::Schema::Result::TmpHoldsqueue;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::TmpHoldsqueue
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<tmp_holdsqueue>
20 =cut
22 __PACKAGE__->table("tmp_holdsqueue");
24 =head1 ACCESSORS
26 =head2 biblionumber
28 data_type: 'integer'
29 is_nullable: 1
31 =head2 itemnumber
33 data_type: 'integer'
34 is_nullable: 1
36 =head2 barcode
38 data_type: 'varchar'
39 is_nullable: 1
40 size: 20
42 =head2 surname
44 data_type: 'mediumtext'
45 is_nullable: 0
47 =head2 firstname
49 data_type: 'text'
50 is_nullable: 1
52 =head2 phone
54 data_type: 'text'
55 is_nullable: 1
57 =head2 borrowernumber
59 data_type: 'integer'
60 is_nullable: 0
62 =head2 cardnumber
64 data_type: 'varchar'
65 is_nullable: 1
66 size: 16
68 =head2 reservedate
70 data_type: 'date'
71 datetime_undef_if_invalid: 1
72 is_nullable: 1
74 =head2 title
76 data_type: 'mediumtext'
77 is_nullable: 1
79 =head2 itemcallnumber
81 data_type: 'varchar'
82 is_nullable: 1
83 size: 255
85 =head2 holdingbranch
87 data_type: 'varchar'
88 is_nullable: 1
89 size: 10
91 =head2 pickbranch
93 data_type: 'varchar'
94 is_nullable: 1
95 size: 10
97 =head2 notes
99 data_type: 'text'
100 is_nullable: 1
102 =head2 item_level_request
104 data_type: 'tinyint'
105 default_value: 0
106 is_nullable: 0
108 =cut
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 => 16 },
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 },
144 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
145 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZD6xOAdXuMjglFtNa+DMEQ
148 # You can replace this text with custom content, and it will be preserved on regeneration