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

(-)a/Koha/Schema/Result/OldReserve.pm (-2 / +10 lines)
Lines 70-75 __PACKAGE__->table("old_reserves"); Link Here
70
  datetime_undef_if_invalid: 1
70
  datetime_undef_if_invalid: 1
71
  is_nullable: 1
71
  is_nullable: 1
72
72
73
=head2 cancellation_reason
74
75
  data_type: 'varchar'
76
  is_nullable: 1
77
  size: 80
78
73
=head2 reservenotes
79
=head2 reservenotes
74
80
75
  data_type: 'longtext'
81
  data_type: 'longtext'
Lines 163-168 __PACKAGE__->add_columns( Link Here
163
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
169
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
164
  "cancellationdate",
170
  "cancellationdate",
165
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
171
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
172
  "cancellation_reason",
173
  { data_type => "varchar", is_nullable => 1, size => 80 },
166
  "reservenotes",
174
  "reservenotes",
167
  { data_type => "longtext", is_nullable => 1 },
175
  { data_type => "longtext", is_nullable => 1 },
168
  "priority",
176
  "priority",
Lines 298-305 __PACKAGE__->belongs_to( Link Here
298
);
306
);
299
307
300
308
301
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 12:43:15
309
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-18 17:27:37
302
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4vMUC/1kSr3vgQ7n0Pmuug
310
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kC6pAbaLsjgC2NI1/3TYTA
303
311
304
__PACKAGE__->add_columns(
312
__PACKAGE__->add_columns(
305
    '+item_level_hold' => { is_boolean => 1 },
313
    '+item_level_hold' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Reserve.pm (-3 / +10 lines)
Lines 74-79 __PACKAGE__->table("reserves"); Link Here
74
  datetime_undef_if_invalid: 1
74
  datetime_undef_if_invalid: 1
75
  is_nullable: 1
75
  is_nullable: 1
76
76
77
=head2 cancellation_reason
78
79
  data_type: 'varchar'
80
  is_nullable: 1
81
  size: 80
82
77
=head2 reservenotes
83
=head2 reservenotes
78
84
79
  data_type: 'longtext'
85
  data_type: 'longtext'
Lines 177-182 __PACKAGE__->add_columns( Link Here
177
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
183
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
178
  "cancellationdate",
184
  "cancellationdate",
179
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
185
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
186
  "cancellation_reason",
187
  { data_type => "varchar", is_nullable => 1, size => 80 },
180
  "reservenotes",
188
  "reservenotes",
181
  { data_type => "longtext", is_nullable => 1 },
189
  { data_type => "longtext", is_nullable => 1 },
182
  "priority",
190
  "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-05-18 17:01:55
341
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VH7h5kYo9WhlGobXb3N3Jg
349
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:61tfpJklYVLy+Krmh9+UdA
342
350
343
__PACKAGE__->belongs_to(
351
__PACKAGE__->belongs_to(
344
  "item",
352
  "item",
345
- 

Return to bug 25534