View | Details | Raw Unified | Return to bug 22785
Collapse All | Expand All

(-)a/Koha/Schema/Result/ImportRecordMatch.pm (-3 / +25 lines)
Lines 46-51 the biblio the imported record matches (biblio.biblionumber) Link Here
46
46
47
the match score
47
the match score
48
48
49
=head2 chosen
50
51
  data_type: 'tinyint'
52
  is_nullable: 1
53
54
whether this match has been allowed or denied
55
49
=cut
56
=cut
50
57
51
__PACKAGE__->add_columns(
58
__PACKAGE__->add_columns(
Lines 55-62 __PACKAGE__->add_columns( Link Here
55
  { data_type => "integer", is_nullable => 0 },
62
  { data_type => "integer", is_nullable => 0 },
56
  "score",
63
  "score",
57
  { data_type => "integer", default_value => 0, is_nullable => 0 },
64
  { data_type => "integer", default_value => 0, is_nullable => 0 },
65
  "chosen",
66
  { data_type => "tinyint", is_nullable => 1 },
58
);
67
);
59
68
69
=head1 PRIMARY KEY
70
71
=over 4
72
73
=item * L</import_record_id>
74
75
=item * L</candidate_match_id>
76
77
=back
78
79
=cut
80
81
__PACKAGE__->set_primary_key("import_record_id", "candidate_match_id");
82
60
=head1 RELATIONS
83
=head1 RELATIONS
61
84
62
=head2 import_record
85
=head2 import_record
Lines 75-82 __PACKAGE__->belongs_to( Link Here
75
);
98
);
76
99
77
100
78
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
101
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-14 17:49:53
79
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kWU/SGWvZBBvVwEvDysrtA
102
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:e+g5nzHamX5ktnmMV6/KvQ
80
103
81
sub koha_object_class {
104
sub koha_object_class {
82
    'Koha::Import::Record::Match';
105
    'Koha::Import::Record::Match';
83
- 

Return to bug 22785