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

(-)a/Koha/Schema/Result/Itemtype.pm (-1 / +16 lines)
Lines 184-189 If automatic checkin is enabled for items of this type Link Here
184
184
185
Activate bookable feature for items related to this item type
185
Activate bookable feature for items related to this item type
186
186
187
=head2 checkprevcheckout
188
189
  data_type: 'varchar'
190
  default_value: 'inherit'
191
  is_nullable: 0
192
  size: 7
193
194
Produce a warning for a patron if a item of this type has previously been checked out to the same patron if 'yes', not if 'no', defer to category setting if 'inherit'.
195
187
=cut
196
=cut
188
197
189
__PACKAGE__->add_columns(
198
__PACKAGE__->add_columns(
Lines 232-237 __PACKAGE__->add_columns( Link Here
232
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
241
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
233
  "bookable",
242
  "bookable",
234
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
243
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
244
  "checkprevcheckout",
245
  {
246
    data_type => "varchar",
247
    default_value => "inherit",
248
    is_nullable => 0,
249
    size => 7,
250
  },
235
);
251
);
236
252
237
=head1 PRIMARY KEY
253
=head1 PRIMARY KEY
238
- 

Return to bug 20644