Lines 58-67
item barcode (MARC21 952$p)
Link Here
|
58 |
=head2 bookable |
58 |
=head2 bookable |
59 |
|
59 |
|
60 |
data_type: 'tinyint' |
60 |
data_type: 'tinyint' |
61 |
default_value: 0 |
61 |
is_nullable: 1 |
62 |
is_nullable: 0 |
|
|
63 |
|
62 |
|
64 |
boolean value defining whether this item is available for bookings or not |
63 |
nullable boolean value defining whether this this item is available for bookings or not |
65 |
|
64 |
|
66 |
=head2 dateaccessioned |
65 |
=head2 dateaccessioned |
67 |
|
66 |
|
Lines 405-411
__PACKAGE__->add_columns(
Link Here
|
405 |
"barcode", |
404 |
"barcode", |
406 |
{ data_type => "varchar", is_nullable => 1, size => 20 }, |
405 |
{ data_type => "varchar", is_nullable => 1, size => 20 }, |
407 |
"bookable", |
406 |
"bookable", |
408 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
407 |
{ data_type => "tinyint", is_nullable => 1 }, |
409 |
"dateaccessioned", |
408 |
"dateaccessioned", |
410 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
409 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
411 |
"booksellerid", |
410 |
"booksellerid", |
Lines 532-539
__PACKAGE__->add_columns(
Link Here
|
532 |
__PACKAGE__->set_primary_key("itemnumber"); |
531 |
__PACKAGE__->set_primary_key("itemnumber"); |
533 |
|
532 |
|
534 |
|
533 |
|
535 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-26 13:26:37 |
534 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-26 13:35:02 |
536 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:13COB8Ty6QDInmxN/zvEig |
535 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1DwSBCE1xmO32FHJofFG6Q |
537 |
|
536 |
|
538 |
__PACKAGE__->add_columns( |
537 |
__PACKAGE__->add_columns( |
539 |
'+bookable' => { is_boolean => 1 }, |
538 |
'+bookable' => { is_boolean => 1 }, |