package Common::DB::Schema::RPS::LabelRoyaltyStatementSale;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    label_royalty_statement_sale_id
    label_royalty_statement_id
    sale_id
    label_name
    service_id
    service_name
    distributor
    territory
    period_begin
    period_end
    product_type
    product_format
    catalog_id
    upc
    release_date
    album_id
    album_name
    album_artist
    upc_alt
    album_custom_1
    album_custom_2
    album_custom_3
    isrc
    track_id
    disc_no
    track_no
    track_name
    track_artist
    track_custom_1
    track_custom_2
    track_custom_3
    units
    unit_price
    ext_price
    currency_code
    currency_conv
    base_unit_price
    base_ext_price
    free
    dist_fee
    base_net_price
    media_type
/);

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

1;
