Lines 40-45
__PACKAGE__->table("import_record_matches");
Link Here
|
40 |
default_value: 0 |
40 |
default_value: 0 |
41 |
is_nullable: 0 |
41 |
is_nullable: 0 |
42 |
|
42 |
|
|
|
43 |
=head2 chosen |
44 |
|
45 |
data_type: 'tinyint' |
46 |
is_nullable: 1 |
47 |
|
43 |
=cut |
48 |
=cut |
44 |
|
49 |
|
45 |
__PACKAGE__->add_columns( |
50 |
__PACKAGE__->add_columns( |
Lines 49-56
__PACKAGE__->add_columns(
Link Here
|
49 |
{ data_type => "integer", is_nullable => 0 }, |
54 |
{ data_type => "integer", is_nullable => 0 }, |
50 |
"score", |
55 |
"score", |
51 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
56 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
|
|
57 |
"chosen", |
58 |
{ data_type => "tinyint", is_nullable => 1 }, |
52 |
); |
59 |
); |
53 |
|
60 |
|
|
|
61 |
=head1 PRIMARY KEY |
62 |
|
63 |
=over 4 |
64 |
|
65 |
=item * L</import_record_id> |
66 |
|
67 |
=item * L</candidate_match_id> |
68 |
|
69 |
=back |
70 |
|
71 |
=cut |
72 |
|
73 |
__PACKAGE__->set_primary_key("import_record_id", "candidate_match_id"); |
74 |
|
54 |
=head1 RELATIONS |
75 |
=head1 RELATIONS |
55 |
|
76 |
|
56 |
=head2 import_record |
77 |
=head2 import_record |
Lines 69-76
__PACKAGE__->belongs_to(
Link Here
|
69 |
); |
90 |
); |
70 |
|
91 |
|
71 |
|
92 |
|
72 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 |
93 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-01-04 14:04:12 |
73 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hJW36EeP+H8+0/Ij3iuIFw |
94 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YSZUbzE+4O/Z2BWrcWQ/bQ |
74 |
|
95 |
|
75 |
sub koha_object_class { |
96 |
sub koha_object_class { |
76 |
'Koha::Import::Record::Match'; |
97 |
'Koha::Import::Record::Match'; |
77 |
- |
|
|