package Common::DB::Schema::RPS::Product;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    product_id
    parent_product_id
    title
    title_clean
    product_code
    upc_ean
    release_date
    product_type_id
    product_price_id
    product_status_id
    default_price_level_id
    date_created
    created_by
    date_modified
    deleted
    deleted_date
    modified_by
    asset_id
    upc_alt
/);

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

1;
