package Orchard::DB::Schema::RoyaltyAccounting::Adjustment;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    adjustment_id
    contract_id
    accounting_run_id
    currency_code
    amount
    memo
    apply_on
    created_by
    created_at
    last_modified_by
    last_modified
/);

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

1;
