package Common::DB::Schema::RPS::Expense;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    expense_id
    expense_type_id
    parent_type
    parent_id
    amount
    percent
    memo
    pre_process
    processed
    date_created
    created_by
    date_modified
    modified_by
/);

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

1;
