package Common::DB::Schema::RPS::UkMechRetentionRunSummary;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    album_id
    album_title
    artist_name
    catalog_number
    current_period
    p1_held
    p2_held
    p3_held
    p4_held
    product_type
    release_date
    total_held
    tv_advertised
    uk_mechanical_run_id
/);

1;
