|
Lines 75-93
age limit for the patron
Link Here
|
| 75 |
|
75 |
|
| 76 |
the minimum age required for the patron category |
76 |
the minimum age required for the patron category |
| 77 |
|
77 |
|
| 78 |
=head2 finetype |
|
|
| 79 |
|
| 80 |
data_type: 'varchar' |
| 81 |
is_nullable: 1 |
| 82 |
size: 30 |
| 83 |
|
| 84 |
unused in Koha |
| 85 |
|
| 86 |
=head2 bulk |
| 87 |
|
| 88 |
data_type: 'tinyint' |
| 89 |
is_nullable: 1 |
| 90 |
|
| 91 |
=head2 enrolmentfee |
78 |
=head2 enrolmentfee |
| 92 |
|
79 |
|
| 93 |
data_type: 'decimal' |
80 |
data_type: 'decimal' |
|
Lines 103-115
enrollment fee for the patron
Link Here
|
| 103 |
|
90 |
|
| 104 |
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) |
| 105 |
|
92 |
|
| 106 |
=head2 issuelimit |
|
|
| 107 |
|
| 108 |
data_type: 'smallint' |
| 109 |
is_nullable: 1 |
| 110 |
|
| 111 |
unused in Koha |
| 112 |
|
| 113 |
=head2 reservefee |
93 |
=head2 reservefee |
| 114 |
|
94 |
|
| 115 |
data_type: 'decimal' |
95 |
data_type: 'decimal' |
|
Lines 230-245
__PACKAGE__->add_columns(
Link Here
|
| 230 |
{ data_type => "smallint", is_nullable => 1 }, |
210 |
{ data_type => "smallint", is_nullable => 1 }, |
| 231 |
"dateofbirthrequired", |
211 |
"dateofbirthrequired", |
| 232 |
{ data_type => "tinyint", is_nullable => 1 }, |
212 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 233 |
"finetype", |
|
|
| 234 |
{ data_type => "varchar", is_nullable => 1, size => 30 }, |
| 235 |
"bulk", |
| 236 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 237 |
"enrolmentfee", |
213 |
"enrolmentfee", |
| 238 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
214 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 239 |
"overduenoticerequired", |
215 |
"overduenoticerequired", |
| 240 |
{ data_type => "tinyint", is_nullable => 1 }, |
216 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 241 |
"issuelimit", |
|
|
| 242 |
{ data_type => "smallint", is_nullable => 1 }, |
| 243 |
"reservefee", |
217 |
"reservefee", |
| 244 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
218 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 245 |
"hidelostitems", |
219 |
"hidelostitems", |
|
Lines 388-395
__PACKAGE__->has_many(
Link Here
|
| 388 |
); |
362 |
); |
| 389 |
|
363 |
|
| 390 |
|
364 |
|
| 391 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 20:49:52 |
365 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-01-02 12:30:56 |
| 392 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r0Mftlw4TU7x+Ze2pAlwYQ |
366 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CVu9trGfAspa6mrbjPNKzw |
| 393 |
|
367 |
|
| 394 |
sub koha_object_class { |
368 |
sub koha_object_class { |
| 395 |
'Koha::Patron::Category'; |
369 |
'Koha::Patron::Category'; |
| 396 |
- |
|
|