package Common::DB::Schema::RPS::LabelPayeeAccount;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use base (qw/Common::DB::DBIxCore/);

## table
__PACKAGE__->table('label_payee_account');

## columns
__PACKAGE__->add_columns(qw/
    label_payee_id
    payor_id
    finance_account_id
    min_payment
    date_created
    created_by
    date_modified
    modified_by
/);

1;
