package Common::DB::Schema::RSCOMMON::BookFormat;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    book_format_id
    onix_code
    description
    active
/);

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

1;
