From 487e4708b312cd2de645a36cbf0f0bcb31e07d15 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 27 Jun 2018 04:12:43 +0000 Subject: [PATCH] Bug 20073: (RM follow-up) Update schema files --- Koha/Schema/Result/SearchField.pm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/SearchField.pm b/Koha/Schema/Result/SearchField.pm index ee32f42..95dab9d 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"]} + extra: {list => ["","string","date","number","boolean","sum","isbn","stdno"]} is_nullable: 0 what type of data this holds, relevant when storing it in the search engine @@ -65,7 +65,9 @@ __PACKAGE__->add_columns( "type", { data_type => "enum", - extra => { list => ["", "string", "date", "number", "boolean", "sum"] }, + extra => { + list => ["", "string", "date", "number", "boolean", "sum", "isbn", "stdno"], + }, is_nullable => 0, }, ); @@ -114,8 +116,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 13:30:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1IenQWmCO16tJ/nIFTFYug +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-27 04:12:00 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:axyQNupqtw+5gMh1rsIHAg __PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map"); -- 2.1.4