package Orchard::DB::Schema::RoyaltyAccounting::PayeeContact;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use base 'Orchard::DB::DBIxCore';

## table
__PACKAGE__->table('royalty_accounting.payee_contact');

## columns
__PACKAGE__->add_columns(qw/
    payee_contact_id
    payee_id
    contact_name
    email
    phone_number
    address_1
    address_2
    address_3
    city
    state_province_region
    postal_code
    country_code
    created_by
    created_at
    last_modified_by
    last_modified
/);

## primary key
__PACKAGE__->set_primary_key('payee_contact_id');

1;
