package Common::DB::Schema::RPS::MechanicalRun;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mechanical_run_id
    label
    ending_sale_date
    start_date
    end_date
    start_time
    end_time
    status
    pid
    payor_id
    job_id
    hostname
    error
    date_created
    created_by
    date_modified
    unallocated_balance
/);

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

1;
