From ba76bc03af9556acaed19a6b2f73c4e7784214ed Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 8 Nov 2022 15:08:18 +0000 Subject: [PATCH] Bug 31378: DBIC Build Signed-off-by: Martin Renvoize --- Koha/Schema/Result/IdentityProviderDomain.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/IdentityProviderDomain.pm b/Koha/Schema/Result/IdentityProviderDomain.pm index 89d6791427..a26b1255f9 100644 --- a/Koha/Schema/Result/IdentityProviderDomain.pm +++ b/Koha/Schema/Result/IdentityProviderDomain.pm @@ -92,7 +92,7 @@ Allow provider from opac interface =head2 allow_staff data_type: 'tinyint' - default_value: 1 + default_value: 0 is_nullable: 0 Allow provider from staff interface @@ -117,7 +117,7 @@ __PACKAGE__->add_columns( "allow_opac", { data_type => "tinyint", default_value => 1, is_nullable => 0 }, "allow_staff", - { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -206,8 +206,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-20 15:27:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xTbkigJHktgNYDw1Xx01sw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-08 15:08:00 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:y+yBUgUZ20W3Gy5r3xd2ZA __PACKAGE__->add_columns( '+auto_register' => { is_boolean => 1 }, -- 2.20.1