package Common::DB::Schema::RSCOMMON::SupportRole;

use strict;
use warnings;

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

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

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

## primary key
__PACKAGE__->set_primary_key('support_role_id');

1;
