package Common::DB::Schema::RSCOMMON::Phone;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    phone_id
    user_id
    phone_type_id
    phone_number
    date_created
    date_modified
/);

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

1;
