package Common::DB::Schema::RPS::CaPublisher;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    ca_publisher_id
    publisher_name
    city
    state_province
    country_code
    postal_code
    email
    phone_number
    fax_number
    tax_id
    cycle_code
    begin_month_code
    comments
    affiliate_id
    finance_account_id
    statement_type_id
    advance_account_id
    client_account_id
    min_payment
    advance_amount
    street_address
    street_address_2
    street_address_3
    is_admin
    admin_id
    is_agency
    agent_id
    status
    date_created
    created_by
    date_modified
    modified_by
/);

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

1;
