package Common::DB::Schema::RSCOMMON::DistributionServiceClientAllowed;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    service_id
    client_id
    date_created
    date_modified
/);

## primary key
__PACKAGE__->set_primary_key(('service_id','client_id'));

1;
