package Common::DB::Schema::RSCOMMON::Message;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    message_id
    client_id
    title
    synopsis
    body
    type
    area
    date_expires
    date_created
/);

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

1;
