package Common::DB::Schema::RPS::Price;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    price_id
    retail
    wholesale
    ppd
    name
    description
/);

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

1;
