From 85bfad19775c398a623b95aa74419748295748cf Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 24 Feb 2026 10:22:41 +0000 Subject: [PATCH] Bug 33538: DBIx::Class schema update Auto-generated DBIx::Class schema updates from database changes Sponsored-by: ByWater Solutions --- Koha/Schema/Result/IdentityProviderMapping.pm | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/IdentityProviderMapping.pm b/Koha/Schema/Result/IdentityProviderMapping.pm index 94f27e3d08c..59c6a66799e 100644 --- a/Koha/Schema/Result/IdentityProviderMapping.pm +++ b/Koha/Schema/Result/IdentityProviderMapping.pm @@ -63,6 +63,22 @@ Corresponding field in Koha borrowers table Default value if provider does not supply this field +=head2 sync_on_creation + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + +Whether to sync this field on user creation + +=head2 sync_on_update + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + +Whether to sync this field on user update + =cut __PACKAGE__->add_columns( @@ -76,6 +92,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 0, size => 255 }, "default_content", { data_type => "varchar", is_nullable => 1, size => 255 }, + "sync_on_creation", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + "sync_on_update", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -124,8 +144,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x2JmD4As/a96Ndoe5rzuKg +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-24 10:21:34 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gXvQgh6gfmIpIz6omXkAsg =head2 koha_object_class -- 2.53.0