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 112-118 __PACKAGE__->table("reserves"); Link Here
112
112
113
=head2 expirationdate
113
=head2 expirationdate
114
114
115
  data_type: 'date'
115
  data_type: 'datetime'
116
  datetime_undef_if_invalid: 1
116
  datetime_undef_if_invalid: 1
117
  is_nullable: 1
117
  is_nullable: 1
118
118
Lines 161-167 __PACKAGE__->add_columns( Link Here
161
    is_nullable    => 0,
161
    is_nullable    => 0,
162
  },
162
  },
163
  "reservedate",
163
  "reservedate",
164
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
164
  {
165
    data_type => "datetime",
166
    datetime_undef_if_invalid => 1,
167
    is_nullable => 1,
168
  },
165
  "biblionumber",
169
  "biblionumber",
166
  {
170
  {
167
    data_type      => "integer",
171
    data_type      => "integer",
Lines 195-201 __PACKAGE__->add_columns( Link Here
195
  "waitingdate",
199
  "waitingdate",
196
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
200
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
197
  "expirationdate",
201
  "expirationdate",
198
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
202
  {
203
    data_type => "datetime",
204
    datetime_undef_if_invalid => 1,
205
    is_nullable => 1,
206
  },
199
  "lowestPriority",
207
  "lowestPriority",
200
  {
208
  {
201
    accessor      => "lowest_priority",
209
    accessor      => "lowest_priority",
Lines 337-344 __PACKAGE__->belongs_to( Link Here
337
);
345
);
338
346
339
347
340
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 12:43:15
348
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-20 22:26:18
341
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VH7h5kYo9WhlGobXb3N3Jg
349
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:G53X+P6A27lU+I239YfXyw
342
350
343
__PACKAGE__->belongs_to(
351
__PACKAGE__->belongs_to(
344
  "item",
352
  "item",
345
- 

Return to bug 24718