package Common::DB::Schema::RPS::MechanicalStatementTransaction;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mechanical_statement_transaction_id
    mechanical_statement_id
    amount
    memo
    check_number
    pending_transaction_id
    transaction_date
    type_code
    date_modified
/);

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

1;
