package Common::DB::Schema::RSCOMMON::TableChangeLog;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    table_change_log_id
    client_id
    table_name
    action
    set_pairs
    where_pairs
    status
    notified
    date_created
    date_modified
/);

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

1;
