Bugzilla – Attachment 193701 Details for
Bug 33538
Allow for independent shibboleth autocreate and sync mapping
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33538: DBIx::Class schema update
85bfad1.patch (text/plain), 1.86 KB, created by
Martin Renvoize (ashimema)
on 2026-02-24 10:34:41 UTC
(
hide
)
Description:
Bug 33538: DBIx::Class schema update
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2026-02-24 10:34:41 UTC
Size:
1.86 KB
patch
obsolete
>From 85bfad19775c398a623b95aa74419748295748cf Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@openfifth.co.uk> >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 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33538
:
193700
| 193701 |
193702
|
193703
|
193704