package Common::DB::Schema::RPS::ProductPatternMatch;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    match_id
    product_id
    product_type
    match_md5
    pattern
    level
    date_created
    date_modified
/);

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

1;
