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

(-)a/Koha/Schema/Result/Itemtype.pm (-6 / +6 lines)
Lines 106-113 default text be recorded in the column note when the processing fee is applied Link Here
106
106
107
=head2 notforloan
107
=head2 notforloan
108
108
109
  data_type: 'smallint'
109
  data_type: 'tinyint'
110
  is_nullable: 1
110
  default_value: 0
111
  is_nullable: 0
111
112
112
1 if the item is not for loan, 0 if the item is available for loan
113
1 if the item is not for loan, 0 if the item is available for loan
113
114
Lines 199-205 __PACKAGE__->add_columns( Link Here
199
  "processfee",
200
  "processfee",
200
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
201
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
201
  "notforloan",
202
  "notforloan",
202
  { data_type => "smallint", is_nullable => 1 },
203
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
203
  "imageurl",
204
  "imageurl",
204
  { data_type => "varchar", is_nullable => 1, size => 200 },
205
  { data_type => "varchar", is_nullable => 1, size => 200 },
205
  "summary",
206
  "summary",
Lines 333-340 __PACKAGE__->has_many( Link Here
333
);
334
);
334
335
335
336
336
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-22 11:31:25
337
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-29 23:00:24
337
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SoRKIMEqXE2+RkGq6zBejA
338
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sk+On8Rdc7XQpif21w5/xg
338
339
339
__PACKAGE__->add_columns(
340
__PACKAGE__->add_columns(
340
    '+automatic_checkin'            => { is_boolean => 1 },
341
    '+automatic_checkin'            => { is_boolean => 1 },
341
- 

Return to bug 36687