package Common::DB::Schema::RPS::MechanicalRunTrackLicense;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    run_id
    run_type
    track_license_id
    product_id
    track_id
    country_code
    base_rate
    share
    units
    year
/);

1;
