|
Lines 44-50
foreign key linking to patron_quota.id
Link Here
|
| 44 |
data_type: 'integer' |
44 |
data_type: 'integer' |
| 45 |
is_nullable: 1 |
45 |
is_nullable: 1 |
| 46 |
|
46 |
|
| 47 |
foreign key linking to issues.issue_id |
47 |
linking to issues.issue_id or old_issues.issue_id |
| 48 |
|
48 |
|
| 49 |
=head2 patron_id |
49 |
=head2 patron_id |
| 50 |
|
50 |
|
|
Lines 112-120
__PACKAGE__->belongs_to(
Link Here
|
| 112 |
); |
112 |
); |
| 113 |
|
113 |
|
| 114 |
|
114 |
|
| 115 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-31 16:17:33 |
115 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-07 14:14:27 |
| 116 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:V5C3mWjeEHKuqk42HnrxOg |
116 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/UbHmNOqiKX4ZjaDZOKi0Q |
| 117 |
|
117 |
|
| 118 |
|
118 |
|
|
|
119 |
sub koha_object_class { |
| 120 |
return 'Koha::Patron::Quota::Usage'; |
| 121 |
} |
| 122 |
|
| 119 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
123 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
|
|
124 |
|
| 125 |
sub koha_object_class { |
| 126 |
return 'Koha::Patron::Quota::Usage'; |
| 127 |
} |
| 128 |
|
| 129 |
sub koha_objects_class { |
| 130 |
return 'Koha::Patron::Quota::Usages'; |
| 131 |
} |
| 132 |
|
| 120 |
1; |
133 |
1; |
| 121 |
- |
|
|