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

(-)a/Koha/Schema/Result/OldReserve.pm (-2 / +10 lines)
Lines 118-123 __PACKAGE__->table("old_reserves"); Link Here
118
  datetime_undef_if_invalid: 1
118
  datetime_undef_if_invalid: 1
119
  is_nullable: 1
119
  is_nullable: 1
120
120
121
=head2 pickupexpired
122
123
  data_type: 'date'
124
  datetime_undef_if_invalid: 1
125
  is_nullable: 1
126
121
=head2 lowestPriority
127
=head2 lowestPriority
122
128
123
  accessor: 'lowest_priority'
129
  accessor: 'lowest_priority'
Lines 196-201 __PACKAGE__->add_columns( Link Here
196
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
202
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
197
  "expirationdate",
203
  "expirationdate",
198
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
204
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
205
  "pickupexpired",
206
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
199
  "lowestPriority",
207
  "lowestPriority",
200
  {
208
  {
201
    accessor      => "lowest_priority",
209
    accessor      => "lowest_priority",
Lines 314-321 __PACKAGE__->belongs_to( Link Here
314
);
322
);
315
323
316
324
317
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-31 14:16:48
325
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-04-28 12:23:24
318
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DnOerXRIsIGIRKl9I0HZUQ
326
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AAKfhZfJaya1XUWTqeVMgA
319
327
320
__PACKAGE__->add_columns(
328
__PACKAGE__->add_columns(
321
    '+item_level_hold' => { is_boolean => 1 },
329
    '+item_level_hold' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Reserve.pm (-3 / +10 lines)
Lines 122-127 __PACKAGE__->table("reserves"); Link Here
122
  datetime_undef_if_invalid: 1
122
  datetime_undef_if_invalid: 1
123
  is_nullable: 1
123
  is_nullable: 1
124
124
125
=head2 pickupexpired
126
127
  data_type: 'date'
128
  datetime_undef_if_invalid: 1
129
  is_nullable: 1
130
125
=head2 lowestPriority
131
=head2 lowestPriority
126
132
127
  accessor: 'lowest_priority'
133
  accessor: 'lowest_priority'
Lines 210-215 __PACKAGE__->add_columns( Link Here
210
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
216
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
211
  "expirationdate",
217
  "expirationdate",
212
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
218
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
219
  "pickupexpired",
220
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
213
  "lowestPriority",
221
  "lowestPriority",
214
  {
222
  {
215
    accessor      => "lowest_priority",
223
    accessor      => "lowest_priority",
Lines 353-360 __PACKAGE__->belongs_to( Link Here
353
);
361
);
354
362
355
363
356
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-31 14:16:48
364
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-04-28 12:23:24
357
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:goRy3ZQWpGNmicok5Av37Q
365
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lCAjQKeOZPYLaMstOD0oiw
358
366
359
__PACKAGE__->belongs_to(
367
__PACKAGE__->belongs_to(
360
  "item",
368
  "item",
361
- 

Return to bug 10744