package Common::DB::Schema::RPS::ClientUserPreference;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    user_id
    name
    value
/);

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

1;
