package Common::DB::Schema::RPS::ExpenseType;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    expense_type_id
    artist_contract_id
    expense_name_id
    percent
    inactive
/);

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

1;
