From 1ae24dbb181de58a42601f5207b8a0bbb9b0eab4 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 23 Aug 2022 17:52:46 +0000 Subject: [PATCH] Bug 29632: Schema update Signed-off-by: Lucas Gass --- 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..55c84c3e7b 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-08-23 17:51:22 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XG4obQEAoPnDbQCMy9eYkw __PACKAGE__->add_columns( '+mandatory' => { is_boolean => 1 }, -- 2.39.5