From 05936b422a98ad34cbff8ea41aef0dfa0aa2cbfd Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 31 Oct 2023 17:50:35 +0000 Subject: [PATCH] Bug 34438: Schema changes [DO NOT PUSH] Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- Koha/Schema/Result/BorrowerModification.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm index 4e58afdbd8..090f9ecbdc 100644 --- a/Koha/Schema/Result/BorrowerModification.pm +++ b/Koha/Schema/Result/BorrowerModification.pm @@ -441,6 +441,12 @@ data processing consent is_nullable: 1 size: 45 +=head2 lang + + data_type: 'varchar' + is_nullable: 1 + size: 25 + useful for reporting purposes =cut @@ -621,6 +627,8 @@ __PACKAGE__->add_columns( }, "primary_contact_method", { data_type => "varchar", is_nullable => 1, size => 45 }, + "lang", + { data_type => "varchar", is_nullable => 1, size => 25 }, ); =head1 PRIMARY KEY -- 2.30.2