From 83612d5ecb36c1c03cc21ed59e19454123c01c90 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 9 Nov 2023 10:07:06 -0300 Subject: [PATCH] Bug 34517: DBIC schema Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/BorrowerAttributeType.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/BorrowerAttributeType.pm b/Koha/Schema/Result/BorrowerAttributeType.pm index 9f921a6f85..55ce803473 100644 --- a/Koha/Schema/Result/BorrowerAttributeType.pm +++ b/Koha/Schema/Result/BorrowerAttributeType.pm @@ -79,6 +79,14 @@ defines if this field is editable by patrons on their account in the OPAC (1 for defines if this field is searchable via the patron search in the staff interface (1 for yes, 0 for no) +=head2 searched_by_default + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +defines if this field is included in "Standard" patron searches in the staff interface (1 for yes, 0 for no) + =head2 authorised_value_category data_type: 'varchar' @@ -146,6 +154,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "staff_searchable", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "searched_by_default", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "authorised_value_category", { data_type => "varchar", is_nullable => 1, size => 32 }, "display_checkout", @@ -240,8 +250,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-25 12:50:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VgJP4Ugfz0sN3YoJk/tshA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-09 13:06:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oeyBHoK+4epL1s+IAKNY7w __PACKAGE__->add_columns( '+keep_for_pseudonymization' => { is_boolean => 1 }, -- 2.39.5