package Common::DB::Schema::RPS::NewArtistContract;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    artist_contract_id
    title
    artist_description
    artist_payee_id
    client_contract_id
    issue_date
    term_start
    term_end
    end_date
    reserve_rate
    digital_reserves_enabled
    date_created
    created_by
    date_modified
    modified_by
    payor_id
    comments
/);

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

1;
