package Common::DB::Schema::RSCOMMON::UserClientImprintMap;

use strict;
use warnings;

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

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

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

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

1;
