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

(-)a/Koha/Schema/Result/Borrower.pm (+15 lines)
Lines 1145-1150 __PACKAGE__->has_many( Link Here
1145
  { cascade_copy => 0, cascade_delete => 0 },
1145
  { cascade_copy => 0, cascade_delete => 0 },
1146
);
1146
);
1147
1147
1148
=head2 patron_consents
1149
1150
Type: has_many
1151
1152
Related object: L<Koha::Schema::Result::PatronConsent>
1153
1154
=cut
1155
1156
__PACKAGE__->has_many(
1157
  "patron_consents",
1158
  "Koha::Schema::Result::PatronConsent",
1159
  { "foreign.borrowernumber" => "self.borrowernumber" },
1160
  { cascade_copy => 0, cascade_delete => 0 },
1161
);
1162
1148
=head2 patron_list_patrons
1163
=head2 patron_list_patrons
1149
1164
1150
Type: has_many
1165
Type: has_many
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +14 lines)
Lines 415-420 __PACKAGE__->table("borrower_modifications"); Link Here
415
  data_type: 'mediumtext'
415
  data_type: 'mediumtext'
416
  is_nullable: 1
416
  is_nullable: 1
417
417
418
=head2 gdpr_proc_consent
419
420
  data_type: 'datetime'
421
  datetime_undef_if_invalid: 1
422
  is_nullable: 1
423
418
=cut
424
=cut
419
425
420
__PACKAGE__->add_columns(
426
__PACKAGE__->add_columns(
Lines 581-586 __PACKAGE__->add_columns( Link Here
581
  { data_type => "integer", is_nullable => 1 },
587
  { data_type => "integer", is_nullable => 1 },
582
  "extended_attributes",
588
  "extended_attributes",
583
  { data_type => "mediumtext", is_nullable => 1 },
589
  { data_type => "mediumtext", is_nullable => 1 },
590
  "gdpr_proc_consent",
591
  {
592
    data_type => "datetime",
593
    datetime_undef_if_invalid => 1,
594
    is_nullable => 1,
595
  },
584
);
596
);
585
597
586
=head1 PRIMARY KEY
598
=head1 PRIMARY KEY
Lines 598-605 __PACKAGE__->add_columns( Link Here
598
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
610
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
599
611
600
612
601
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
613
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-04 14:17:47
602
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Vv0bJqR71Ust1MZAkYqTig
614
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NE/d8+g2NbRoj/VCd2ecyg
603
615
604
616
605
# You can replace this text with custom content, and it will be preserved on regeneration
617
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/PatronConsent.pm (-1 / +118 lines)
Line 0 Link Here
0
- 
1
use utf8;
2
package Koha::Schema::Result::PatronConsent;
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::PatronConsent
10
11
=cut
12
13
use strict;
14
use warnings;
15
16
use base 'DBIx::Class::Core';
17
18
=head1 TABLE: C<patron_consent>
19
20
=cut
21
22
__PACKAGE__->table("patron_consent");
23
24
=head1 ACCESSORS
25
26
=head2 id
27
28
  data_type: 'integer'
29
  is_auto_increment: 1
30
  is_nullable: 0
31
32
=head2 borrowernumber
33
34
  data_type: 'integer'
35
  is_foreign_key: 1
36
  is_nullable: 0
37
38
=head2 type
39
40
  data_type: 'enum'
41
  extra: {list => ["GDPR_PROCESSING"]}
42
  is_nullable: 1
43
44
=head2 given_on
45
46
  data_type: 'datetime'
47
  datetime_undef_if_invalid: 1
48
  is_nullable: 1
49
50
=head2 refused_on
51
52
  data_type: 'datetime'
53
  datetime_undef_if_invalid: 1
54
  is_nullable: 1
55
56
=cut
57
58
__PACKAGE__->add_columns(
59
  "id",
60
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
61
  "borrowernumber",
62
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
63
  "type",
64
  {
65
    data_type => "enum",
66
    extra => { list => ["GDPR_PROCESSING"] },
67
    is_nullable => 1,
68
  },
69
  "given_on",
70
  {
71
    data_type => "datetime",
72
    datetime_undef_if_invalid => 1,
73
    is_nullable => 1,
74
  },
75
  "refused_on",
76
  {
77
    data_type => "datetime",
78
    datetime_undef_if_invalid => 1,
79
    is_nullable => 1,
80
  },
81
);
82
83
=head1 PRIMARY KEY
84
85
=over 4
86
87
=item * L</id>
88
89
=back
90
91
=cut
92
93
__PACKAGE__->set_primary_key("id");
94
95
=head1 RELATIONS
96
97
=head2 borrowernumber
98
99
Type: belongs_to
100
101
Related object: L<Koha::Schema::Result::Borrower>
102
103
=cut
104
105
__PACKAGE__->belongs_to(
106
  "borrowernumber",
107
  "Koha::Schema::Result::Borrower",
108
  { borrowernumber => "borrowernumber" },
109
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
110
);
111
112
113
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-04 14:17:47
114
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rCOHwL/2vlzKAUM517J+HA
115
116
117
# You can replace this text with custom code or comments, and it will be preserved on regeneration
118
1;

Return to bug 20819