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

(-)a/Koha/Schema/Result/IdentityProviderDomain.pm (-5 / +4 lines)
Lines 92-98 Allow provider from opac interface Link Here
92
=head2 allow_staff
92
=head2 allow_staff
93
93
94
  data_type: 'tinyint'
94
  data_type: 'tinyint'
95
  default_value: 1
95
  default_value: 0
96
  is_nullable: 0
96
  is_nullable: 0
97
97
98
Allow provider from staff interface
98
Allow provider from staff interface
Lines 117-123 __PACKAGE__->add_columns( Link Here
117
  "allow_opac",
117
  "allow_opac",
118
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
118
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
119
  "allow_staff",
119
  "allow_staff",
120
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
120
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
121
);
121
);
122
122
123
=head1 PRIMARY KEY
123
=head1 PRIMARY KEY
Lines 206-213 __PACKAGE__->belongs_to( Link Here
206
);
206
);
207
207
208
208
209
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-20 15:27:55
209
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-08 15:08:00
210
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xTbkigJHktgNYDw1Xx01sw
210
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:y+yBUgUZ20W3Gy5r3xd2ZA
211
211
212
__PACKAGE__->add_columns(
212
__PACKAGE__->add_columns(
213
    '+auto_register'  => { is_boolean => 1 },
213
    '+auto_register'  => { is_boolean => 1 },
214
- 

Return to bug 31378