@@ -, +, @@ --- Koha/Schema/Result/ImportRecordMatch.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/ImportRecordMatch.pm +++ a/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'; --