package Common::DB::Schema::RPS::SaleImportError;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    sale_import_error_id
    mapface_temp_mapping_id
    sale_id
    file_id
    description
    error_type
    mapped
/);

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

1;
