2 package Koha::Schema::Result::Deletedbiblioitem;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::Deletedbiblioitem
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<deletedbiblioitems>
22 __PACKAGE__->table("deletedbiblioitems");
26 =head2 biblioitemnumber
32 primary key, unique identifier assigned by Koha
40 foreign key linking this table to the biblio table
58 biblio level item type (MARC21 942$c)
79 =head2 publicationyear
81 data_type: 'mediumtext'
89 publisher (MARC21 260$b and 264$b)
94 datetime_undef_if_invalid: 1
99 data_type: 'mediumtext'
102 volume information (MARC21 362$a)
104 =head2 collectiontitle
106 data_type: 'longtext'
109 =head2 collectionissn
111 data_type: 'mediumtext'
114 =head2 collectionvolume
116 data_type: 'longtext'
119 =head2 editionstatement
121 data_type: 'mediumtext'
124 =head2 editionresponsibility
126 data_type: 'mediumtext'
131 data_type: 'timestamp'
132 datetime_undef_if_invalid: 1
133 default_value: current_timestamp
141 illustrations (MARC21 300$b)
148 number of pages (MARC21 300$a)
152 data_type: 'longtext'
160 material size (MARC21 300$c)
167 publication place (MARC21 260$a and 264§a)
171 data_type: 'longtext'
174 library of congress control number (MARC21 010$a)
178 data_type: 'mediumtext'
189 classification source (MARC21 942$2)
215 normalized version of the call number used for sorting
217 =head2 agerestriction
223 target audience/age restriction from the bib record (MARC21 521$a)
232 __PACKAGE__->add_columns(
234 { data_type => "integer", default_value => 0, is_nullable => 0 },
236 { data_type => "integer", default_value => 0, is_nullable => 0 },
238 { data_type => "longtext", is_nullable => 1 },
240 { data_type => "longtext", is_nullable => 1 },
242 { data_type => "varchar", is_nullable => 1, size => 10 },
244 { data_type => "longtext", is_nullable => 1 },
246 { data_type => "longtext", is_nullable => 1 },
248 { data_type => "longtext", is_nullable => 1 },
250 { data_type => "mediumtext", is_nullable => 1 },
252 { data_type => "text", is_nullable => 1 },
254 { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
256 { data_type => "mediumtext", is_nullable => 1 },
258 { data_type => "longtext", is_nullable => 1 },
260 { data_type => "mediumtext", is_nullable => 1 },
262 { data_type => "longtext", is_nullable => 1 },
264 { data_type => "mediumtext", is_nullable => 1 },
265 "editionresponsibility",
266 { data_type => "mediumtext", is_nullable => 1 },
269 data_type => "timestamp",
270 datetime_undef_if_invalid => 1,
271 default_value => \"current_timestamp",
275 { data_type => "text", is_nullable => 1 },
277 { data_type => "text", is_nullable => 1 },
279 { data_type => "longtext", is_nullable => 1 },
281 { data_type => "text", is_nullable => 1 },
283 { data_type => "text", is_nullable => 1 },
285 { data_type => "longtext", is_nullable => 1 },
287 { data_type => "mediumtext", is_nullable => 1 },
289 { data_type => "varchar", is_nullable => 1, size => 10 },
291 { data_type => "varchar", is_nullable => 1, size => 30 },
293 { data_type => "varchar", is_nullable => 1, size => 10 },
295 { data_type => "varchar", is_nullable => 1, size => 10 },
297 { data_type => "varchar", is_nullable => 1, size => 255 },
299 { data_type => "varchar", is_nullable => 1, size => 255 },
301 { data_type => "integer", is_nullable => 1 },
308 =item * L</biblioitemnumber>
314 __PACKAGE__->set_primary_key("biblioitemnumber");
317 # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-26 12:47:08
318 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GiuL+3o/fRyTkale3lq2xQ
320 sub koha_objects_class {
321 'Koha::Old::Biblioitems';
323 sub koha_object_class {
324 'Koha::Old::Biblioitem';