package Common::DB::Schema::RPS::McpsLicense;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mcps_license_id
    product_id
    mcps_id
    payor_id
    retention_category
    max_retention_periods
    initial_periods_completed
    dvd_category
    date_created
    date_modified
/);

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

1;
