package Common::DB::Schema::RSCOMMON::StorageHost;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    storage_host_id
    hostname
    date_created
    date_modified
/);

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

1;
