package Common::DB::Schema::RPS::Alert;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    alert_id
    message
    alert_level
    date_created
    created_by
    date_modified
    modified_by
/);

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

1;
