From 2f2404599584f6ece2b8958bc0a78a39b4f7d3cf Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 11 Aug 2023 13:10:18 +0000 Subject: [PATCH] Bug 34517: DO NOT PUSH - Schema Updates Signed-off-by: Kelly McElligott --- 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 9a4b7125ce..63b54e29d2 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-08-11 13:08:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tygbX1pq/Mwh7T7b5sUfJQ __PACKAGE__->add_columns( '+keep_for_pseudonymization' => { is_boolean => 1 }, -- 2.30.2