package Common::DB::Schema::RPS::Period;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    period_id
    name
    start_date
    end_date
    date_created
    date_modified
/);

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

1;
