package Common::DB::Schema::RPS::LabelContract;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    label_contract_id
    title
    label_payee_id
    client_contract_id
    issue_date
    date_created
    created_by
    date_modified
    modified_by
    payor_id
/);

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

1;
