@@ -, +, @@ --- Koha/Schema/Result/SearchField.pm | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) --- a/Koha/Schema/Result/SearchField.pm +++ a/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"]} + extra: {list => ["","string","date","number","boolean","sum","isbn","stdno","year"]} is_nullable: 0 what type of data this holds, relevant when storing it in the search engine @@ -98,7 +98,17 @@ __PACKAGE__->add_columns( { data_type => "enum", extra => { - list => ["", "string", "date", "number", "boolean", "sum", "isbn", "stdno"], + list => [ + "", + "string", + "date", + "number", + "boolean", + "sum", + "isbn", + "stdno", + "year", + ], }, is_nullable => 0, }, @@ -158,8 +168,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-10-16 14:32:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HBEJWxqos7/LzD/QzTi45Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-08 09:37:38 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iWmUtCXEzX6vilFP9jdojA __PACKAGE__->add_columns( '+mandatory' => { is_boolean => 1 }, --