package Common::DB::Schema::RPS::CaLicenseReserveRun;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    ca_license_reserve_id
    ca_mechanical_run_id
/);

## primary key
__PACKAGE__->set_primary_key(('ca_license_reserve_id','ca_mechanical_run_id'));

1;
