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

(-)a/Koha/Schema/Result/Category.pm (-13 / +2 lines)
Lines 90-103 enrollment fee for the patron Link Here
90
90
91
are overdue notices sent to this patron category (1 for yes, 0 for no)
91
are overdue notices sent to this patron category (1 for yes, 0 for no)
92
92
93
=head2 reservefee
94
95
  data_type: 'decimal'
96
  is_nullable: 1
97
  size: [28,6]
98
99
cost to place holds
100
101
=head2 hidelostitems
93
=head2 hidelostitems
102
94
103
  data_type: 'tinyint'
95
  data_type: 'tinyint'
Lines 251-258 __PACKAGE__->add_columns( Link Here
251
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
243
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
252
  "overduenoticerequired",
244
  "overduenoticerequired",
253
  { data_type => "tinyint", is_nullable => 1 },
245
  { data_type => "tinyint", is_nullable => 1 },
254
  "reservefee",
255
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
256
  "hidelostitems",
246
  "hidelostitems",
257
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
247
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
258
  "category_type",
248
  "category_type",
Lines 410-417 __PACKAGE__->has_many( Link Here
410
);
400
);
411
401
412
402
413
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 07:11:31
403
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-09-10 12:53:22
414
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ADt+iDjteg9Jb81L2FMIvg
404
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O+AhV5uPhWvYtW7JYJPVfw
415
405
416
# You can replace this text with custom code or comments, and it will be preserved on regeneration
406
# You can replace this text with custom code or comments, and it will be preserved on regeneration
417
407
418
- 

Return to bug 3492