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

(-)a/Koha/Schema/Result/ImportRecordMatch.pm (-3 / +11 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-60 __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
60
=head1 PRIMARY KEY
69
=head1 PRIMARY KEY
Lines 89-96 __PACKAGE__->belongs_to( Link Here
89
);
98
);
90
99
91
100
92
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-03 14:22:04
101
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-20 14:40:50
93
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jN0xJqlL5brcUwa3bvEHHQ
102
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aVZQFY/Tb1N6C6GgMwlig
94
103
95
sub koha_object_class {
104
sub koha_object_class {
96
    'Koha::Import::Record::Match';
105
    'Koha::Import::Record::Match';
97
- 

Return to bug 22785