package Common::DB::Schema::RSCOMMON::Client20121107;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    client_id
    client_name
    client_name_clean
    web_alias
    db_name
    db_host
    db_user
    db_pass
    date_created
    date_modified
    royalty_period_mechanical
    royalty_period_artist
    hfa_manufacturer_code
    use_net_for_mechanical_deductions
    subtract_stat_rate_from_net_revenue
    type_mask
    country_code
    secondary_market_country
    language_code
    main_page
    job_priority_scale
/);

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

1;
