package Common::DB::Schema::RPS::MechanicalRunMissedSaleLog;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mechanical_run_missed_sale_log_id
    mechanical_run_id
    run_type
    reason
    details
    sale_id
    album_id
    artist_name
    album_title
    catalog_number
    product_id
    product_type_id
    product_type
    units
    total_revenue
/);

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

1;
