package Common::DB::Schema::RSCOMMON::ClientFtp;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    client_ftp_id
    client_id
    status
    ftp_site
    username
    password
    target_dir
    email
    protocol
    date_created
    date_modified
/);

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

1;
