package Common::DB::Schema::RSCOMMON::McpsRetentionRate;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mcps_license_retention_category_id
    period_1
    period_2
    period_3
    period_4
/);

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

1;
