package Common::DB::Schema::RSCOMMON::Dataroot;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    dataroot_id
    mount_point
    date_created
    date_modified
    windows_mount_point
/);

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

1;
