package Common::DB::Schema::RPS::LabelRoyaltyRun;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    label_royalty_run_id
    label
    ending_sale_date
    start_time
    end_time
    status
    pid
    job_id
    payor_id
    hostname
    date_created
    created_by
    date_modified
/);

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

1;
