package Common::DB::Schema::RSCOMMON::CountryCustom;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    country_custom_id
    country_id
    name
/);

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

1;
