|
Lines 162-167
the date the item was marked as waiting for the patron at the library
Link Here
|
| 162 |
|
162 |
|
| 163 |
the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date) |
163 |
the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date) |
| 164 |
|
164 |
|
|
|
165 |
=head2 pickupexpired |
| 166 |
|
| 167 |
data_type: 'date' |
| 168 |
datetime_undef_if_invalid: 1 |
| 169 |
is_nullable: 1 |
| 170 |
|
| 165 |
=head2 lowestPriority |
171 |
=head2 lowestPriority |
| 166 |
|
172 |
|
| 167 |
accessor: 'lowest_priority' |
173 |
accessor: 'lowest_priority' |
|
Lines 258-263
__PACKAGE__->add_columns(
Link Here
|
| 258 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
264 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
| 259 |
"expirationdate", |
265 |
"expirationdate", |
| 260 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
266 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
|
|
267 |
"pickupexpired", |
| 268 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
| 261 |
"lowestPriority", |
269 |
"lowestPriority", |
| 262 |
{ |
270 |
{ |
| 263 |
accessor => "lowest_priority", |
271 |
accessor => "lowest_priority", |
|
Lines 421-428
__PACKAGE__->belongs_to(
Link Here
|
| 421 |
); |
429 |
); |
| 422 |
|
430 |
|
| 423 |
|
431 |
|
| 424 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
432 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-03-31 10:19:09 |
| 425 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BlMb2M0MEmFuTiMSSBEseg |
433 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zw7qZTlQAxT5ZY1tunepKA |
| 426 |
|
434 |
|
| 427 |
__PACKAGE__->belongs_to( |
435 |
__PACKAGE__->belongs_to( |
| 428 |
"item", |
436 |
"item", |
| 429 |
- |
|
|