package Common::DB::Schema::RPS::LicenseIncomeType;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    license_income_type_id
    name
/);

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

1;
