package Common::DB::Schema::RPS::Session;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    session_id
    master_user_id
    active_user_id
    client_id
    ip_address
    date_created
    last_access
/);

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

1;
