package Common::DB::Schema::RSCOMMON::OnixCode;

use strict;
use warnings;

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

## table
__PACKAGE__->table('RSCOMMON.onix_code');

## columns
__PACKAGE__->add_columns(qw/
    onix_code_id
    code_list
    code_value
    description
    notes
/);

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

1;
