package Common::DB::Schema::RPS::AggMSummary;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    month_id
/);

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

1;
