package Common::DB::Schema::RPS::ProductServiceId;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    product_service_id
    product_id
    service_id
    code
    date_created
    date_modified
/);

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

1;
