package Common::DB::Schema::RSCOMMON::UserClientLabelMap;

use strict;
use warnings;

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

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

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

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

1;
