package Common::DB::Schema::RPS::Artist;

use strict;
use warnings;

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

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

## columns
__PACKAGE__->add_columns(qw/
    artist_id
    name
    date_created
    date_modified
    client_artist_id
    name_clean
/);

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

1;
