package Common::DB::Schema::RPS::RegionCountryMap;

use strict;
use warnings;

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

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

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

1;
