package Common::DB::Schema::RPS::ContentImportStoredAlbum;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    content_import_id
    album_id
/);

## primary key
__PACKAGE__->set_primary_key(('content_import_id','album_id'));

1;
