package Common::DB::Schema::RSCOMMON::Country;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    country_id
    alpha2
    alpha3
    numeric3
    name
/);

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

1;
