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

(-)a/Koha/Schema/Result/Category.pm (-1 / +12 lines)
Lines 109-114 __PACKAGE__->table("categories"); Link Here
109
  default_value: -1
109
  default_value: -1
110
  is_nullable: 0
110
  is_nullable: 0
111
111
112
=head2 canbeguarantee
113
114
  data_type: 'tinyint'
115
  default_value: 0
116
  is_nullable: 0
117
112
=head2 default_privacy
118
=head2 default_privacy
113
119
114
  data_type: 'enum'
120
  data_type: 'enum'
Lines 186-191 __PACKAGE__->add_columns( Link Here
186
    default_value => -1,
192
    default_value => -1,
187
    is_nullable   => 0,
193
    is_nullable   => 0,
188
  },
194
  },
195
  "canbeguarantee",
196
  { data_type => "tinyint", default_value => 0, is_nullable => 0},
189
  "default_privacy",
197
  "default_privacy",
190
  {
198
  {
191
    data_type => "enum",
199
    data_type => "enum",
Lines 309-314 __PACKAGE__->add_columns( Link Here
309
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
317
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
310
);
318
);
311
319
320
__PACKAGE__->add_columns(
321
    '+canbeguarantee' => { is_boolean => 1 }
322
);
323
312
sub koha_object_class {
324
sub koha_object_class {
313
    'Koha::Patron::Category';
325
    'Koha::Patron::Category';
314
}
326
}
315
- 

Return to bug 12446