From 8f10b6c32c36f29853b21d105abcff09929d69ac Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 7 Oct 2021 15:47:21 +0200 Subject: [PATCH] Bug 18984: DBIC schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/SearchMarcMap.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/SearchMarcMap.pm b/Koha/Schema/Result/SearchMarcMap.pm index 03bc94304c..197c4a9800 100644 --- a/Koha/Schema/Result/SearchMarcMap.pm +++ b/Koha/Schema/Result/SearchMarcMap.pm @@ -40,7 +40,7 @@ what storage index this map is for =head2 marc_type data_type: 'enum' - extra: {list => ["marc21","unimarc","normarc"]} + extra: {list => ["marc21","unimarc"]} is_nullable: 0 what MARC type this map is for @@ -67,7 +67,7 @@ __PACKAGE__->add_columns( "marc_type", { data_type => "enum", - extra => { list => ["marc21", "unimarc", "normarc"] }, + extra => { list => ["marc21", "unimarc"] }, is_nullable => 0, }, "marc_field", @@ -122,8 +122,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-12 16:41:47 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nKMOxnAJST3zNN6Kxj2ynA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-07 13:47:10 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HQY44LzIK/SztomgBeycbg __PACKAGE__->many_to_many("search_fields", "search_marc_to_fields", "search_field"); -- 2.39.5