|
Lines 40-46
foreign key from the borrowers table defining which patron this hold is for
Link Here
|
| 40 |
|
40 |
|
| 41 |
=head2 reservedate |
41 |
=head2 reservedate |
| 42 |
|
42 |
|
| 43 |
data_type: 'date' |
43 |
data_type: 'datetime' |
| 44 |
datetime_undef_if_invalid: 1 |
44 |
datetime_undef_if_invalid: 1 |
| 45 |
is_nullable: 1 |
45 |
is_nullable: 1 |
| 46 |
|
46 |
|
|
Lines 159-165
the date the item was marked as waiting for the patron at the library
Link Here
|
| 159 |
|
159 |
|
| 160 |
=head2 expirationdate |
160 |
=head2 expirationdate |
| 161 |
|
161 |
|
| 162 |
data_type: 'date' |
162 |
data_type: 'datetime' |
| 163 |
datetime_undef_if_invalid: 1 |
163 |
datetime_undef_if_invalid: 1 |
| 164 |
is_nullable: 1 |
164 |
is_nullable: 1 |
| 165 |
|
165 |
|
|
Lines 231-237
__PACKAGE__->add_columns(
Link Here
|
| 231 |
"borrowernumber", |
231 |
"borrowernumber", |
| 232 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
232 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 233 |
"reservedate", |
233 |
"reservedate", |
| 234 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
234 |
{ |
|
|
235 |
data_type => "datetime", |
| 236 |
datetime_undef_if_invalid => 1, |
| 237 |
is_nullable => 1, |
| 238 |
}, |
| 235 |
"biblionumber", |
239 |
"biblionumber", |
| 236 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
240 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 237 |
"item_group_id", |
241 |
"item_group_id", |
|
Lines 266-272
__PACKAGE__->add_columns(
Link Here
|
| 266 |
"waitingdate", |
270 |
"waitingdate", |
| 267 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
271 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
| 268 |
"expirationdate", |
272 |
"expirationdate", |
| 269 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
273 |
{ |
|
|
274 |
data_type => "datetime", |
| 275 |
datetime_undef_if_invalid => 1, |
| 276 |
is_nullable => 1, |
| 277 |
}, |
| 270 |
"patron_expiration_date", |
278 |
"patron_expiration_date", |
| 271 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
279 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
| 272 |
"lowestPriority", |
280 |
"lowestPriority", |
|
Lines 407-414
__PACKAGE__->belongs_to(
Link Here
|
| 407 |
); |
415 |
); |
| 408 |
|
416 |
|
| 409 |
|
417 |
|
| 410 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-10 14:01:25 |
418 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-27 01:16:31 |
| 411 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:evv31XLI36n7e+oYL/hsug |
419 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AAF0+7CnidRHohiSb3qAog |
| 412 |
|
420 |
|
| 413 |
__PACKAGE__->belongs_to( |
421 |
__PACKAGE__->belongs_to( |
| 414 |
"item", |
422 |
"item", |