Line 0
Link Here
|
0 |
- |
1 |
use utf8; |
|
|
2 |
package Koha::Schema::Result::PatronQuotaUsage; |
3 |
|
4 |
# Created by DBIx::Class::Schema::Loader |
5 |
# DO NOT MODIFY THE FIRST PART OF THIS FILE |
6 |
|
7 |
=head1 NAME |
8 |
|
9 |
Koha::Schema::Result::PatronQuotaUsage |
10 |
|
11 |
=cut |
12 |
|
13 |
use strict; |
14 |
use warnings; |
15 |
|
16 |
use base 'DBIx::Class::Core'; |
17 |
|
18 |
=head1 TABLE: C<patron_quota_usage> |
19 |
|
20 |
=cut |
21 |
|
22 |
__PACKAGE__->table("patron_quota_usage"); |
23 |
|
24 |
=head1 ACCESSORS |
25 |
|
26 |
=head2 id |
27 |
|
28 |
data_type: 'integer' |
29 |
is_auto_increment: 1 |
30 |
is_nullable: 0 |
31 |
|
32 |
unique identifier for quota usage record |
33 |
|
34 |
=head2 patron_quota_id |
35 |
|
36 |
data_type: 'integer' |
37 |
is_foreign_key: 1 |
38 |
is_nullable: 0 |
39 |
|
40 |
foreign key linking to patron_quota.id |
41 |
|
42 |
=head2 issue_id |
43 |
|
44 |
data_type: 'integer' |
45 |
is_nullable: 1 |
46 |
|
47 |
foreign key linking to issues.issue_id |
48 |
|
49 |
=head2 patron_id |
50 |
|
51 |
data_type: 'integer' |
52 |
is_foreign_key: 1 |
53 |
is_nullable: 0 |
54 |
|
55 |
foreign key linking to borrowers.borrowernumber |
56 |
|
57 |
=cut |
58 |
|
59 |
__PACKAGE__->add_columns( |
60 |
"id", |
61 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
62 |
"patron_quota_id", |
63 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
64 |
"issue_id", |
65 |
{ data_type => "integer", is_nullable => 1 }, |
66 |
"patron_id", |
67 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
68 |
); |
69 |
|
70 |
=head1 PRIMARY KEY |
71 |
|
72 |
=over 4 |
73 |
|
74 |
=item * L</id> |
75 |
|
76 |
=back |
77 |
|
78 |
=cut |
79 |
|
80 |
__PACKAGE__->set_primary_key("id"); |
81 |
|
82 |
=head1 RELATIONS |
83 |
|
84 |
=head2 patron |
85 |
|
86 |
Type: belongs_to |
87 |
|
88 |
Related object: L<Koha::Schema::Result::Borrower> |
89 |
|
90 |
=cut |
91 |
|
92 |
__PACKAGE__->belongs_to( |
93 |
"patron", |
94 |
"Koha::Schema::Result::Borrower", |
95 |
{ borrowernumber => "patron_id" }, |
96 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
97 |
); |
98 |
|
99 |
=head2 patron_quota |
100 |
|
101 |
Type: belongs_to |
102 |
|
103 |
Related object: L<Koha::Schema::Result::PatronQuota> |
104 |
|
105 |
=cut |
106 |
|
107 |
__PACKAGE__->belongs_to( |
108 |
"patron_quota", |
109 |
"Koha::Schema::Result::PatronQuota", |
110 |
{ id => "patron_quota_id" }, |
111 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
112 |
); |
113 |
|
114 |
|
115 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-31 16:17:33 |
116 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:V5C3mWjeEHKuqk42HnrxOg |
117 |
|
118 |
|
119 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
120 |
1; |