package Orchard::DB::Schema::RoyaltyAccounting::Payee;

use strict;
use warnings;

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

## table
__PACKAGE__->table('royalty_accounting.payee');

## columns
__PACKAGE__->add_columns(qw/
    payee_id
    name
    payee_type
    payment_agreement_type
    currency_code
    payment_schedule
    payment_minimum
    created_by
    created_at
    last_modified_by
    last_modified
/);

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

1;
