package Common::DB::Schema::RSCOMMON::ClientServiceAccountMap;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    client_id
    service_account_id
/);

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

1;
