package Common::DB::Schema::RPS::Report;

use strict;
use warnings;

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

## table
__PACKAGE__->table('report');

## columns
__PACKAGE__->add_columns(qw/
    report_id
    report_type
    report_group
    file_path
    file_name
    status
    job_id
    created_by
    date_created
    date_modified
/);

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

1;
