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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +17 lines)
Lines 1706-1711 __PACKAGE__->has_many( Link Here
1706
  { cascade_copy => 0, cascade_delete => 0 },
1706
  { cascade_copy => 0, cascade_delete => 0 },
1707
);
1707
);
1708
1708
1709
=head2 patron_quota_usages
1710
1711
Type: has_many
1712
1713
Related object: L<Koha::Schema::Result::PatronQuotaUsage>
1714
1715
=cut
1716
1717
__PACKAGE__->has_many(
1718
  "patron_quota_usages",
1719
  "Koha::Schema::Result::PatronQuotaUsage",
1720
  { "foreign.patron_id" => "self.borrowernumber" },
1721
  { cascade_copy => 0, cascade_delete => 0 },
1722
);
1723
1709
=head2 patron_quotas
1724
=head2 patron_quotas
1710
1725
1711
Type: has_many
1726
Type: has_many
Lines 2212-2219 Composing rels: L</user_permissions> -> permission Link Here
2212
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2227
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2213
2228
2214
2229
2215
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-15 14:23:33
2230
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 16:04:36
2216
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:owrnW20RwWMMM8VZtH1yUw
2231
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:O3PkCl78Nhhcp1UODtVV/A
2217
2232
2218
__PACKAGE__->belongs_to(
2233
__PACKAGE__->belongs_to(
2219
  "library",
2234
  "library",
(-)a/Koha/Schema/Result/Issue.pm (-2 / +2 lines)
Lines 336-343 __PACKAGE__->belongs_to( Link Here
336
);
336
);
337
337
338
338
339
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 13:08:04
339
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-31 16:17:33
340
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Azy+cns0/GJMwsXWJdkolg
340
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UjFMApIlJ/quE0c2Vc77mA
341
341
342
__PACKAGE__->add_columns(
342
__PACKAGE__->add_columns(
343
    '+auto_renew'      => { is_boolean => 1 },
343
    '+auto_renew'      => { is_boolean => 1 },
(-)a/Koha/Schema/Result/PatronQuota.pm (-2 / +17 lines)
Lines 126-134 __PACKAGE__->belongs_to( Link Here
126
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
126
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
127
);
127
);
128
128
129
=head2 patron_quota_usages
129
130
130
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 13:56:19
131
Type: has_many
131
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4NGr+IaPuboW4p8f1v+6Ng
132
133
Related object: L<Koha::Schema::Result::PatronQuotaUsage>
134
135
=cut
136
137
__PACKAGE__->has_many(
138
  "patron_quota_usages",
139
  "Koha::Schema::Result::PatronQuotaUsage",
140
  { "foreign.patron_quota_id" => "self.id" },
141
  { cascade_copy => 0, cascade_delete => 0 },
142
);
143
144
145
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 16:04:36
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KG/MIjPSLcpeSlPypwli2Q
132
147
133
148
134
# You can replace this text with custom code or comments, and it will be preserved on regeneration
149
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/PatronQuotaUsage.pm (-1 / +120 lines)
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;

Return to bug 38924