package Common::DB::Schema::RSCOMMON::RevenueSummary;

use strict;
use warnings;

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

## table
__PACKAGE__->table('RSCOMMON.revenue_summary');

## columns
__PACKAGE__->add_columns(qw/
    summary_id
    customer_id
    file_id
    period_id
    service_id
    file_name
    previous
    current
    billable
    physical
    report_date
    date_created
    date_modified
/);

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

1;
