package Common::DB::Schema::RSCOMMON::Format;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    format_type
    format_name
    date_created
    date_modified
/);

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

1;
