package Common::DB::Schema::RPS::BookProductImageFile;

use strict;
use warnings;

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

## table
__PACKAGE__->table('book_product_image_file');

## columns
__PACKAGE__->add_columns(qw/
    book_product_image_file_id
    book_product_id
    media_file_id
    file_type
    date_created
    date_modified
    catalog_import_id
/);

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

1;
