package Common::DB::Schema::RSCOMMON::SaleFeedServiceUrl;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    service_id
    country_code
    url
/);

## primary key
__PACKAGE__->set_primary_key(('service_id','country_code'));

1;
