package Common::DB::Schema::RPS::LabelRoyaltyStatement;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    label_royalty_statement_id
    label_royalty_run_id
    payee_id
    previous_balance
    balance
    min_payment
    transaction_subtotal
    total
    amount_due
    payor_id
    on_hold
    error
/);

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

1;
