package Common::DB::Schema::RPS::UkMechanicalRun;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    uk_mechanical_run_id
    ending_sale_date
    quarter
    year
    start_time
    end_time
    status
    pid
    payor_id
    job_id
    hostname
    error
    date_created
    created_by
    date_modified
/);

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

1;
