Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

85 lines
1.5 KiB

use utf8;
package Koha::Schema::Result::MatcherMatchpoint;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::MatcherMatchpoint
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<matcher_matchpoints>
=cut
__PACKAGE__->table("matcher_matchpoints");
=head1 ACCESSORS
=head2 matcher_id
data_type: 'integer'
is_foreign_key: 1
is_nullable: 0
=head2 matchpoint_id
data_type: 'integer'
is_foreign_key: 1
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"matcher_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
"matchpoint_id",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
);
=head1 RELATIONS
=head2 matcher
Type: belongs_to
Related object: L<Koha::Schema::Result::MarcMatcher>
=cut
__PACKAGE__->belongs_to(
"matcher",
"Koha::Schema::Result::MarcMatcher",
{ matcher_id => "matcher_id" },
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
);
=head2 matchpoint
Type: belongs_to
Related object: L<Koha::Schema::Result::Matchpoint>
=cut
__PACKAGE__->belongs_to(
"matchpoint",
"Koha::Schema::Result::Matchpoint",
{ matchpoint_id => "matchpoint_id" },
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
);
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:W2mZNvJSe3CC0M52hqJsJg
# You can replace this text with custom content, and it will be preserved on regeneration
1;