package Common::DB::Schema::RPS::AggSaleLog;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    log_id
    total_records
    total_units
    total_revenue
    max_sale_id
    max_date_created
    max_date_modified
    tables_rebuilt
    date_started
    date_finished
/);

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

1;
