From b407cf2a993c6d1157a8ce1c7e280ea50537eefa Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 14 May 2021 17:50:42 +0000 Subject: [PATCH] Bug 22785: DO NOT PUSH Schema updates --- Koha/Schema/Result/ImportRecordMatch.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ImportRecordMatch.pm b/Koha/Schema/Result/ImportRecordMatch.pm index 45c16acd97..1ce9d88ec7 100644 --- a/Koha/Schema/Result/ImportRecordMatch.pm +++ b/Koha/Schema/Result/ImportRecordMatch.pm @@ -46,6 +46,13 @@ the biblio the imported record matches (biblio.biblionumber) the match score +=head2 chosen + + data_type: 'tinyint' + is_nullable: 1 + +whether this match has been allowed or denied + =cut __PACKAGE__->add_columns( @@ -55,6 +62,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 0 }, "score", { data_type => "integer", default_value => 0, is_nullable => 0 }, + "chosen", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -89,8 +98,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-19 12:52:00 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BfqOAZIqw158MQWhVQO/Bg +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-14 17:49:53 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:e+g5nzHamX5ktnmMV6/KvQ sub koha_object_class { 'Koha::Import::Record::Match'; -- 2.11.0