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

(-)a/Koha/Schema/Result/Itemtype.pm (-1 / +8 lines)
Lines 125-130 __PACKAGE__->table("itemtypes"); Link Here
125
  default_value: 0
125
  default_value: 0
126
  is_nullable: 0
126
  is_nullable: 0
127
127
128
=head2 updatenotforloanstatusoncheckin
129
130
  data_type: 'tinyint'
131
  default_value: 1
132
  is_nullable: 0
133
128
=head2 searchcategory
134
=head2 searchcategory
129
135
130
  data_type: 'varchar'
136
  data_type: 'varchar'
Lines 173-178 __PACKAGE__->add_columns( Link Here
173
  { data_type => "varchar", is_nullable => 1, size => 3 },
179
  { data_type => "varchar", is_nullable => 1, size => 3 },
174
  "hideinopac",
180
  "hideinopac",
175
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
181
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
182
  "updatenotforloanstatusoncheckin",
183
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
176
  "searchcategory",
184
  "searchcategory",
177
  { data_type => "varchar", is_nullable => 1, size => 80 },
185
  { data_type => "varchar", is_nullable => 1, size => 80 },
178
);
186
);
179
- 

Return to bug 25560