package Common::DB::Schema::RPS::ProductInputMap;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    map_id
    product_id
    product_type
    media_type
    match_md5
    match_md5_new
    upc
    isrc
    artist_name
    album_name
    track_name
    track_num
    service_id
    service_product_id
    allow_reuse
    dont_match
    date_created
    date_modified
/);

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

1;
