Lines 189-194
authorized value defining this item as withdrawn (MARC21 952$0)
Link Here
|
189 |
|
189 |
|
190 |
the date and time an item was last marked as withdrawn, NULL if not withdrawn |
190 |
the date and time an item was last marked as withdrawn, NULL if not withdrawn |
191 |
|
191 |
|
|
|
192 |
=head2 floating |
193 |
|
194 |
data_type: 'tinyint' |
195 |
default_value: 0 |
196 |
is_nullable: 0 |
197 |
|
198 |
if set, the item does not return to its homebranch after being returned (overrides circulation rules) |
199 |
|
200 |
=head2 floating_on |
201 |
|
202 |
data_type: 'datetime' |
203 |
datetime_undef_if_invalid: 1 |
204 |
is_nullable: 1 |
205 |
|
206 |
the date and time an item was last marked as floating, NULL if not floating |
207 |
|
192 |
=head2 itemcallnumber |
208 |
=head2 itemcallnumber |
193 |
|
209 |
|
194 |
data_type: 'varchar' |
210 |
data_type: 'varchar' |
Lines 467-472
__PACKAGE__->add_columns(
Link Here
|
467 |
datetime_undef_if_invalid => 1, |
483 |
datetime_undef_if_invalid => 1, |
468 |
is_nullable => 1, |
484 |
is_nullable => 1, |
469 |
}, |
485 |
}, |
|
|
486 |
"floating", |
487 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
488 |
"floating_on", |
489 |
{ |
490 |
data_type => "datetime", |
491 |
datetime_undef_if_invalid => 1, |
492 |
is_nullable => 1, |
493 |
}, |
470 |
"itemcallnumber", |
494 |
"itemcallnumber", |
471 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
495 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
472 |
"coded_location_qualifier", |
496 |
"coded_location_qualifier", |
473 |
- |
|
|