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

(-)a/Koha/Schema/Result/OldReserve.pm (-2 / +12 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 patron_expiration_date
161
162
  data_type: 'date'
163
  datetime_undef_if_invalid: 1
164
  is_nullable: 1
165
166
the date the hold expires - usually the date entered by the patron to say they don't need the hold after a certain date
167
160
=head2 lowestPriority
168
=head2 lowestPriority
161
169
162
  accessor: 'lowest_priority'
170
  accessor: 'lowest_priority'
Lines 249-254 __PACKAGE__->add_columns( Link Here
249
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
257
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
250
  "expirationdate",
258
  "expirationdate",
251
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
259
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
260
  "patron_expiration_date",
261
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
252
  "lowestPriority",
262
  "lowestPriority",
253
  {
263
  {
254
    accessor      => "lowest_priority",
264
    accessor      => "lowest_priority",
Lines 367-374 __PACKAGE__->belongs_to( Link Here
367
);
377
);
368
378
369
379
370
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
380
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-13 09:02:27
371
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aVQsdX811LswCsWyBqkSbQ
381
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iT/Gw6XeV9mF/bEFG8ioWQ
372
382
373
__PACKAGE__->belongs_to(
383
__PACKAGE__->belongs_to(
374
  "item",
384
  "item",
(-)a/Koha/Schema/Result/Reserve.pm (-4 / +13 lines)
Lines 160-166 the date the item was marked as waiting for the patron at the library Link Here
160
  datetime_undef_if_invalid: 1
160
  datetime_undef_if_invalid: 1
161
  is_nullable: 1
161
  is_nullable: 1
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 (calculated value)
164
165
=head2 patron_expiration_date
166
167
  data_type: 'date'
168
  datetime_undef_if_invalid: 1
169
  is_nullable: 1
170
171
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
172
165
=head2 lowestPriority
173
=head2 lowestPriority
166
174
Lines 258-263 __PACKAGE__->add_columns( Link Here
258
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
266
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
259
  "expirationdate",
267
  "expirationdate",
260
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
268
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
269
  "patron_expiration_date",
270
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
261
  "lowestPriority",
271
  "lowestPriority",
262
  {
272
  {
263
    accessor      => "lowest_priority",
273
    accessor      => "lowest_priority",
Lines 421-428 __PACKAGE__->belongs_to( Link Here
421
);
431
);
422
432
423
433
424
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
434
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-13 09:02:27
425
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BlMb2M0MEmFuTiMSSBEseg
435
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yUzQH1U6JfQ32rG92IhnPg
426
436
427
__PACKAGE__->belongs_to(
437
__PACKAGE__->belongs_to(
428
  "item",
438
  "item",
429
- 

Return to bug 21729