package Common::DB::Schema::RPS::DeductionType;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    deduction_type_id
    name
    description
    type
/);

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

1;
