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

(-)a/Koha/Schema/Result/IdentityProviderMapping.pm (-3 / +22 lines)
Lines 63-68 Corresponding field in Koha borrowers table Link Here
63
63
64
Default value if provider does not supply this field
64
Default value if provider does not supply this field
65
65
66
=head2 sync_on_creation
67
68
  data_type: 'tinyint'
69
  default_value: 1
70
  is_nullable: 0
71
72
Whether to sync this field on user creation
73
74
=head2 sync_on_update
75
76
  data_type: 'tinyint'
77
  default_value: 1
78
  is_nullable: 0
79
80
Whether to sync this field on user update
81
66
=cut
82
=cut
67
83
68
__PACKAGE__->add_columns(
84
__PACKAGE__->add_columns(
Lines 76-81 __PACKAGE__->add_columns( Link Here
76
  { data_type => "varchar", is_nullable => 0, size => 255 },
92
  { data_type => "varchar", is_nullable => 0, size => 255 },
77
  "default_content",
93
  "default_content",
78
  { data_type => "varchar", is_nullable => 1, size => 255 },
94
  { data_type => "varchar", is_nullable => 1, size => 255 },
95
  "sync_on_creation",
96
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
97
  "sync_on_update",
98
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
79
);
99
);
80
100
81
=head1 PRIMARY KEY
101
=head1 PRIMARY KEY
Lines 124-131 __PACKAGE__->belongs_to( Link Here
124
);
144
);
125
145
126
146
127
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
147
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-24 10:21:34
128
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x2JmD4As/a96Ndoe5rzuKg
148
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gXvQgh6gfmIpIz6omXkAsg
129
149
130
=head2 koha_object_class
150
=head2 koha_object_class
131
151
132
- 

Return to bug 33538