package Common::DB::Schema::RSCOMMON::JobRunRule;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    job_run_rule_id
    hostname
    client_id
    class
    subclass
    global_max
    local_max
    client_max
    load_balanced
/);

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

1;
