package Common::DB::Schema::RSCOMMON::PriceType;

use strict;
use warnings;

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

## table
__PACKAGE__->table('RSCOMMON.price_type');

## columns
__PACKAGE__->add_columns(qw/
    price_type_id
    onix_price_code
    description
    notes
    display
/);

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

1;
