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

(-)a/Koha/Schema/Result/Reserve.pm (-11 / +14 lines)
Lines 42-53 foreign key from the borrowers table defining which patron this hold is for Link Here
42
42
43
=head2 reservedate
43
=head2 reservedate
44
44
45
  data_type: 'date'
45
  data_type: 'datetime'
46
  datetime_undef_if_invalid: 1
46
  datetime_undef_if_invalid: 1
47
  is_nullable: 1
47
  is_nullable: 1
48
48
49
the date the hold was placed
50
51
=head2 biblionumber
49
=head2 biblionumber
52
50
53
  data_type: 'integer'
51
  data_type: 'integer'
Lines 156-167 the date the item was marked as waiting for the patron at the library Link Here
156
154
157
=head2 expirationdate
155
=head2 expirationdate
158
156
159
  data_type: 'date'
157
  data_type: 'datetime'
160
  datetime_undef_if_invalid: 1
158
  datetime_undef_if_invalid: 1
161
  is_nullable: 1
159
  is_nullable: 1
162
160
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
165
=head2 lowestPriority
161
=head2 lowestPriority
166
162
167
  accessor: 'lowest_priority'
163
  accessor: 'lowest_priority'
Lines 219-225 __PACKAGE__->add_columns( Link Here
219
    is_nullable    => 0,
215
    is_nullable    => 0,
220
  },
216
  },
221
  "reservedate",
217
  "reservedate",
222
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
218
  {
219
    data_type => "datetime",
220
    datetime_undef_if_invalid => 1,
221
    is_nullable => 1,
222
  },
223
  "biblionumber",
223
  "biblionumber",
224
  {
224
  {
225
    data_type      => "integer",
225
    data_type      => "integer",
Lines 257-263 __PACKAGE__->add_columns( Link Here
257
  "waitingdate",
257
  "waitingdate",
258
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
258
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
259
  "expirationdate",
259
  "expirationdate",
260
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
260
  {
261
    data_type => "datetime",
262
    datetime_undef_if_invalid => 1,
263
    is_nullable => 1,
264
  },
261
  "lowestPriority",
265
  "lowestPriority",
262
  {
266
  {
263
    accessor      => "lowest_priority",
267
    accessor      => "lowest_priority",
Lines 421-428 __PACKAGE__->belongs_to( Link Here
421
);
425
);
422
426
423
427
424
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
428
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-10-20 10:51:24
425
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BlMb2M0MEmFuTiMSSBEseg
429
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:80eK6pueXJbEHY95USny1g
426
430
427
__PACKAGE__->belongs_to(
431
__PACKAGE__->belongs_to(
428
  "item",
432
  "item",
429
- 

Return to bug 24718