This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Schema/Result/EntityPostcode.pm

42 lines
888 B
Perl
Raw Normal View History

2019-07-12 20:30:34 +00:00
package Pear::LocalLoop::Schema::Result::EntityPostcode;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->table('entities_postcodes');
__PACKAGE__->add_columns(
2021-03-20 12:09:50 +00:00
outcode => {
data_type => 'char',
size => 4,
is_nullable => 0,
},
incode => {
data_type => 'char',
size => 3,
is_nullable => 0,
},
entity_id => {
data_type => 'integer',
is_nullable => 0,
is_foreign_key => 1,
},
2019-07-12 20:30:34 +00:00
);
__PACKAGE__->set_primary_key(qw/ outcode incode entity_id /);
2021-03-20 12:09:50 +00:00
__PACKAGE__->belongs_to( "entity", "Pear::LocalLoop::Schema::Result::Entity",
"entity_id", );
2019-07-12 20:30:34 +00:00
__PACKAGE__->belongs_to(
2021-03-20 12:09:50 +00:00
"gb_postcode",
"Pear::LocalLoop::Schema::Result::GbPostcode",
{
"foreign.outcode" => "self.outcode",
"foreign.incode" => "self.incode",
},
2019-07-12 20:30:34 +00:00
);
1;