package Common::DB::Schema::RPS::MechanicalStatementCell;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    mechanical_statement_cell_id
    mechanical_statement_row_id
    payee_index
    full_index
    class
    display_value
    link_value
    title_value
/);

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

1;
