package Main::Person; use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto Core/); __PACKAGE__->table('person'); __PACKAGE__->add_columns( id => {data_type => 'integer',is_nullable => 0,is_auto_increment => 1}, name => {data_type => 'integer',is_nullable => 0}, ); __PACKAGE__->set_primary_key('id'); __PACKAGE__->belongs_to(name => 'Main::Name');