From 1857b29ee64ea6c509580594e6d1a025a136443b Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 18 Jul 2022 12:11:15 -0300 Subject: [PATCH] Bug 29632: DBIC update Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/SearchField.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Koha/Schema/Result/SearchField.pm b/Koha/Schema/Result/SearchField.pm index 420e65e672..6cc906831e 100644 --- a/Koha/Schema/Result/SearchField.pm +++ b/Koha/Schema/Result/SearchField.pm @@ -48,7 +48,7 @@ the human readable name of the field, for display =head2 type data_type: 'enum' - extra: {list => ["","string","date","number","boolean","sum","isbn","stdno","year"]} + extra: {list => ["","string","date","number","boolean","sum","isbn","stdno","year","callnumber"]} is_nullable: 0 what type of data this holds, relevant when storing it in the search engine @@ -108,6 +108,7 @@ __PACKAGE__->add_columns( "isbn", "stdno", "year", + "callnumber", ], }, is_nullable => 0, @@ -168,8 +169,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-08 09:37:38 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iWmUtCXEzX6vilFP9jdojA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-07-18 15:10:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Uk5JsfPJo0XVvGfMfJg3cg __PACKAGE__->add_columns( '+mandatory' => { is_boolean => 1 }, -- 2.39.2