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

(-)a/Koha/Schema/Result/ImportRecordMatch.pm (-3 / +16 lines)
Lines 57-62 __PACKAGE__->add_columns( Link Here
57
  { data_type => "integer", default_value => 0, is_nullable => 0 },
57
  { data_type => "integer", default_value => 0, is_nullable => 0 },
58
);
58
);
59
59
60
=head1 PRIMARY KEY
61
62
=over 4
63
64
=item * L</import_record_id>
65
66
=item * L</candidate_match_id>
67
68
=back
69
70
=cut
71
72
__PACKAGE__->set_primary_key("import_record_id", "candidate_match_id");
73
60
=head1 RELATIONS
74
=head1 RELATIONS
61
75
62
=head2 import_record
76
=head2 import_record
Lines 75-82 __PACKAGE__->belongs_to( Link Here
75
);
89
);
76
90
77
91
78
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
92
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-19 12:52:00
79
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kWU/SGWvZBBvVwEvDysrtA
93
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BfqOAZIqw158MQWhVQO/Bg
80
94
81
sub koha_object_class {
95
sub koha_object_class {
82
    'Koha::Import::Record::Match';
96
    'Koha::Import::Record::Match';
83
- 

Return to bug 22785