Bug 17196: [QA Follow-up] DBIx schema changes
[koha.git] / Koha / Schema / Result / Biblioitem.pm
blobfcc9676b134a168dbca7d556adc04c33a1f939b6
1 use utf8;
2 package Koha::Schema::Result::Biblioitem;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Biblioitem
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<biblioitems>
20 =cut
22 __PACKAGE__->table("biblioitems");
24 =head1 ACCESSORS
26 =head2 biblioitemnumber
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 biblionumber
34 data_type: 'integer'
35 default_value: 0
36 is_foreign_key: 1
37 is_nullable: 0
39 =head2 volume
41 data_type: 'mediumtext'
42 is_nullable: 1
44 =head2 number
46 data_type: 'mediumtext'
47 is_nullable: 1
49 =head2 itemtype
51 data_type: 'varchar'
52 is_nullable: 1
53 size: 10
55 =head2 isbn
57 data_type: 'mediumtext'
58 is_nullable: 1
60 =head2 issn
62 data_type: 'mediumtext'
63 is_nullable: 1
65 =head2 ean
67 data_type: 'varchar'
68 is_nullable: 1
69 size: 13
71 =head2 publicationyear
73 data_type: 'text'
74 is_nullable: 1
76 =head2 publishercode
78 data_type: 'varchar'
79 is_nullable: 1
80 size: 255
82 =head2 volumedate
84 data_type: 'date'
85 datetime_undef_if_invalid: 1
86 is_nullable: 1
88 =head2 volumedesc
90 data_type: 'text'
91 is_nullable: 1
93 =head2 collectiontitle
95 data_type: 'mediumtext'
96 is_nullable: 1
98 =head2 collectionissn
100 data_type: 'text'
101 is_nullable: 1
103 =head2 collectionvolume
105 data_type: 'mediumtext'
106 is_nullable: 1
108 =head2 editionstatement
110 data_type: 'text'
111 is_nullable: 1
113 =head2 editionresponsibility
115 data_type: 'text'
116 is_nullable: 1
118 =head2 timestamp
120 data_type: 'timestamp'
121 datetime_undef_if_invalid: 1
122 default_value: current_timestamp
123 is_nullable: 0
125 =head2 illus
127 data_type: 'varchar'
128 is_nullable: 1
129 size: 255
131 =head2 pages
133 data_type: 'varchar'
134 is_nullable: 1
135 size: 255
137 =head2 notes
139 data_type: 'mediumtext'
140 is_nullable: 1
142 =head2 size
144 data_type: 'varchar'
145 is_nullable: 1
146 size: 255
148 =head2 place
150 data_type: 'varchar'
151 is_nullable: 1
152 size: 255
154 =head2 lccn
156 data_type: 'varchar'
157 is_nullable: 1
158 size: 25
160 =head2 url
162 data_type: 'text'
163 is_nullable: 1
165 =head2 cn_source
167 data_type: 'varchar'
168 is_nullable: 1
169 size: 10
171 =head2 cn_class
173 data_type: 'varchar'
174 is_nullable: 1
175 size: 30
177 =head2 cn_item
179 data_type: 'varchar'
180 is_nullable: 1
181 size: 10
183 =head2 cn_suffix
185 data_type: 'varchar'
186 is_nullable: 1
187 size: 10
189 =head2 cn_sort
191 data_type: 'varchar'
192 is_nullable: 1
193 size: 255
195 =head2 agerestriction
197 data_type: 'varchar'
198 is_nullable: 1
199 size: 255
201 =head2 totalissues
203 data_type: 'integer'
204 is_nullable: 1
206 =cut
208 __PACKAGE__->add_columns(
209 "biblioitemnumber",
210 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
211 "biblionumber",
213 data_type => "integer",
214 default_value => 0,
215 is_foreign_key => 1,
216 is_nullable => 0,
218 "volume",
219 { data_type => "mediumtext", is_nullable => 1 },
220 "number",
221 { data_type => "mediumtext", is_nullable => 1 },
222 "itemtype",
223 { data_type => "varchar", is_nullable => 1, size => 10 },
224 "isbn",
225 { data_type => "mediumtext", is_nullable => 1 },
226 "issn",
227 { data_type => "mediumtext", is_nullable => 1 },
228 "ean",
229 { data_type => "varchar", is_nullable => 1, size => 13 },
230 "publicationyear",
231 { data_type => "text", is_nullable => 1 },
232 "publishercode",
233 { data_type => "varchar", is_nullable => 1, size => 255 },
234 "volumedate",
235 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
236 "volumedesc",
237 { data_type => "text", is_nullable => 1 },
238 "collectiontitle",
239 { data_type => "mediumtext", is_nullable => 1 },
240 "collectionissn",
241 { data_type => "text", is_nullable => 1 },
242 "collectionvolume",
243 { data_type => "mediumtext", is_nullable => 1 },
244 "editionstatement",
245 { data_type => "text", is_nullable => 1 },
246 "editionresponsibility",
247 { data_type => "text", is_nullable => 1 },
248 "timestamp",
250 data_type => "timestamp",
251 datetime_undef_if_invalid => 1,
252 default_value => \"current_timestamp",
253 is_nullable => 0,
255 "illus",
256 { data_type => "varchar", is_nullable => 1, size => 255 },
257 "pages",
258 { data_type => "varchar", is_nullable => 1, size => 255 },
259 "notes",
260 { data_type => "mediumtext", is_nullable => 1 },
261 "size",
262 { data_type => "varchar", is_nullable => 1, size => 255 },
263 "place",
264 { data_type => "varchar", is_nullable => 1, size => 255 },
265 "lccn",
266 { data_type => "varchar", is_nullable => 1, size => 25 },
267 "url",
268 { data_type => "text", is_nullable => 1 },
269 "cn_source",
270 { data_type => "varchar", is_nullable => 1, size => 10 },
271 "cn_class",
272 { data_type => "varchar", is_nullable => 1, size => 30 },
273 "cn_item",
274 { data_type => "varchar", is_nullable => 1, size => 10 },
275 "cn_suffix",
276 { data_type => "varchar", is_nullable => 1, size => 10 },
277 "cn_sort",
278 { data_type => "varchar", is_nullable => 1, size => 255 },
279 "agerestriction",
280 { data_type => "varchar", is_nullable => 1, size => 255 },
281 "totalissues",
282 { data_type => "integer", is_nullable => 1 },
285 =head1 PRIMARY KEY
287 =over 4
289 =item * L</biblioitemnumber>
291 =back
293 =cut
295 __PACKAGE__->set_primary_key("biblioitemnumber");
297 =head1 RELATIONS
299 =head2 biblionumber
301 Type: belongs_to
303 Related object: L<Koha::Schema::Result::Biblio>
305 =cut
307 __PACKAGE__->belongs_to(
308 "biblionumber",
309 "Koha::Schema::Result::Biblio",
310 { biblionumber => "biblionumber" },
311 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
314 =head2 items
316 Type: has_many
318 Related object: L<Koha::Schema::Result::Item>
320 =cut
322 __PACKAGE__->has_many(
323 "items",
324 "Koha::Schema::Result::Item",
325 { "foreign.biblioitemnumber" => "self.biblioitemnumber" },
326 { cascade_copy => 0, cascade_delete => 0 },
330 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-01-13 08:36:25
331 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cAlg2aIZ7hxeq+Hgl1AJcA
333 __PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );