package Common::DB::Schema::RPS::AlbumContract;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    album_contract_id
    album_id
    artist_contract_id
    is_controlled_comp
    is_ca_controlled_comp
    status
    last_royalty_run_id
    cross_collateralized
/);

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

1;
