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 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 398-404
__PACKAGE__->add_columns(
Link Here
|
398 |
"barcode", |
397 |
"barcode", |
399 |
{ data_type => "varchar", is_nullable => 1, size => 20 }, |
398 |
{ data_type => "varchar", is_nullable => 1, size => 20 }, |
400 |
"bookable", |
399 |
"bookable", |
401 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
400 |
{ data_type => "tinyint", is_nullable => 1 }, |
402 |
"dateaccessioned", |
401 |
"dateaccessioned", |
403 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
402 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
404 |
"booksellerid", |
403 |
"booksellerid", |
Lines 523-530
__PACKAGE__->add_columns(
Link Here
|
523 |
__PACKAGE__->set_primary_key("itemnumber"); |
522 |
__PACKAGE__->set_primary_key("itemnumber"); |
524 |
|
523 |
|
525 |
|
524 |
|
526 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-02 11:06:29 |
525 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-26 17:11:06 |
527 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Afgr1jl6aeSy/rS9RJGq2g |
526 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zX0VESQ43dK9B93+jjj8Lg |
528 |
|
527 |
|
529 |
__PACKAGE__->add_columns( |
528 |
__PACKAGE__->add_columns( |
530 |
'+bookable' => { is_boolean => 1 }, |
529 |
'+bookable' => { is_boolean => 1 }, |