From 789984177242755b0bd0c6f460c333937dba65dd Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 10 Nov 2022 10:02:35 -0300 Subject: [PATCH] Bug 31378: DBIC schema Sponsored-by: a ByWater Solutions partner Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/IdentityProvider.pm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/IdentityProvider.pm b/Koha/Schema/Result/IdentityProvider.pm index 3528a4eaeb..efd43b18e9 100644 --- a/Koha/Schema/Result/IdentityProvider.pm +++ b/Koha/Schema/Result/IdentityProvider.pm @@ -58,7 +58,6 @@ Protocol provider speaks =head2 config data_type: 'longtext' - default_value: ''{}'' is_nullable: 0 Configuration of the provider in JSON format @@ -66,7 +65,6 @@ Configuration of the provider in JSON format =head2 mapping data_type: 'longtext' - default_value: ''{}'' is_nullable: 0 Configuration to map provider data to Koha user @@ -103,9 +101,9 @@ __PACKAGE__->add_columns( is_nullable => 0, }, "config", - { data_type => "longtext", default_value => "'{}'", is_nullable => 0 }, + { data_type => "longtext", is_nullable => 0 }, "mapping", - { data_type => "longtext", default_value => "'{}'", is_nullable => 0 }, + { data_type => "longtext", is_nullable => 0 }, "matchpoint", { data_type => "enum", @@ -160,8 +158,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-20 15:27:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jmqAwH7/6QvawJ73/0rkQg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-10 13:01:32 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xSD/bRC3hJCF+nP/EYwn3Q __PACKAGE__->has_many( "domains", -- 2.39.5