package Common::DB::Schema::RSCOMMON::Feed;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    feed_id
    name
    keywords
    url
    product
/);

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

1;
