package Common::DB::Schema::RSCOMMON::BestSellerBook;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    best_seller_book_id
    best_seller_monitor_id
    best_seller_list_id
    title
    author
    imprint
    rank
    isbn10
    isbn13
    related_isbn10
    related_isbn13
    date_created
/);

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

1;
