package Common::DB::Schema::RSCOMMON::ServiceCredential;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    service_credential_id
    description
    protocol
    sfx_acct_name
    hostname
    port
    username
    password
    authfile
/);

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

1;
