package Common::DB::Schema::RPS::ReportNotify;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    report_id
    active_user_id
    date_created
    date_modified
/);

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

1;
