From 40de885487e86876fc7cb5e97ef0e756d027b3a6 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 26 Nov 2025 12:41:31 -0500 Subject: [PATCH] Bug 41311: Update DBIC [DO NOT PUSH] Signed-off-by: Martin Renvoize --- Koha/Schema/Result/SipAccount.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/SipAccount.pm b/Koha/Schema/Result/SipAccount.pm index 8dac7953eab..71e003a74e2 100644 --- a/Koha/Schema/Result/SipAccount.pm +++ b/Koha/Schema/Result/SipAccount.pm @@ -43,6 +43,12 @@ Foreign key to sip_institutions.sip_institution_id is_nullable: 1 size: 255 +=head2 patron_branchcode_in_ao + + data_type: 'tinyint' + default_value: 0 + is_nullable: 1 + =head2 allow_additional_materials_checkout data_type: 'tinyint' @@ -255,6 +261,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, "ae_field_template", { data_type => "varchar", is_nullable => 1, size => 255 }, + "patron_branchcode_in_ao", + { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "allow_additional_materials_checkout", { data_type => "tinyint", is_nullable => 1 }, "allow_empty_passwords", @@ -501,8 +509,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-11-04 15:47:11 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N8uHee0eMqOcg0I1obuEWA +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-11-26 15:41:44 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UKHVC0lIrifpOd+vwEwBjA __PACKAGE__->add_columns( -- 2.52.0