View | Details | Raw Unified | Return to bug 10744
Collapse All | Expand All

(-)a/Koha/Schema/Result/OldReserve.pm (-2 / +10 lines)
Lines 157-162 the date the item was marked as waiting for the patron at the library Link Here
157
157
158
the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date)
158
the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date)
159
159
160
=head2 pickupexpired
161
162
  data_type: 'date'
163
  datetime_undef_if_invalid: 1
164
  is_nullable: 1
165
160
=head2 lowestPriority
166
=head2 lowestPriority
161
167
162
  accessor: 'lowest_priority'
168
  accessor: 'lowest_priority'
Lines 249-254 __PACKAGE__->add_columns( Link Here
249
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
255
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
250
  "expirationdate",
256
  "expirationdate",
251
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
257
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
258
  "pickupexpired",
259
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
252
  "lowestPriority",
260
  "lowestPriority",
253
  {
261
  {
254
    accessor      => "lowest_priority",
262
    accessor      => "lowest_priority",
Lines 367-374 __PACKAGE__->belongs_to( Link Here
367
);
375
);
368
376
369
377
370
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
378
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-03-31 10:19:09
371
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aVQsdX811LswCsWyBqkSbQ
379
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CJ6PeuqOCTaE+BbghLhYsg
372
380
373
__PACKAGE__->belongs_to(
381
__PACKAGE__->belongs_to(
374
  "item",
382
  "item",
(-)a/Koha/Schema/Result/Reserve.pm (-3 / +10 lines)
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
- 

Return to bug 10744