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

(-)a/Koha/Schema/Result/Reserve.pm (-7 / +14 lines)
Lines 38-44 __PACKAGE__->table("reserves"); Link Here
38
38
39
=head2 reservedate
39
=head2 reservedate
40
40
41
  data_type: 'date'
41
  data_type: 'datetime'
42
  datetime_undef_if_invalid: 1
42
  datetime_undef_if_invalid: 1
43
  is_nullable: 1
43
  is_nullable: 1
44
44
Lines 118-124 __PACKAGE__->table("reserves"); Link Here
118
118
119
=head2 expirationdate
119
=head2 expirationdate
120
120
121
  data_type: 'date'
121
  data_type: 'datetime'
122
  datetime_undef_if_invalid: 1
122
  datetime_undef_if_invalid: 1
123
  is_nullable: 1
123
  is_nullable: 1
124
124
Lines 173-179 __PACKAGE__->add_columns( Link Here
173
    is_nullable    => 0,
173
    is_nullable    => 0,
174
  },
174
  },
175
  "reservedate",
175
  "reservedate",
176
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
176
  {
177
    data_type => "datetime",
178
    datetime_undef_if_invalid => 1,
179
    is_nullable => 1,
180
  },
177
  "biblionumber",
181
  "biblionumber",
178
  {
182
  {
179
    data_type      => "integer",
183
    data_type      => "integer",
Lines 209-215 __PACKAGE__->add_columns( Link Here
209
  "waitingdate",
213
  "waitingdate",
210
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
214
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
211
  "expirationdate",
215
  "expirationdate",
212
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
216
  {
217
    data_type => "datetime",
218
    datetime_undef_if_invalid => 1,
219
    is_nullable => 1,
220
  },
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.07046 @ 2020-09-15 12:01:06
357
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:goRy3ZQWpGNmicok5Av37Q
365
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MYGDTBYY6bQ6zMDRgxMGIg
358
366
359
__PACKAGE__->belongs_to(
367
__PACKAGE__->belongs_to(
360
  "item",
368
  "item",
361
- 

Return to bug 24718