package Common::DB::Schema::RPS::McpsLicenseRetention;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mcps_license_retention_id
    mcps_license_id
    period_id
    units_held
    price
    price_level_id
    retention_category
    original_statement_item_id
/);

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

1;
