package Common::DB::Schema::RPS::AggQTopProducts;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    format_type
    label_id
    product_id
    product_type
    quarter_id
    rank
    revenue
    service_id
    units
/);

1;
