package Bulletinboard::Schema::Topic; use strict; use warnings; use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/ PK::Auto Core /); __PACKAGE__->table('topics'); __PACKAGE__->add_columns(qw/topic_id topic position/); __PACKAGE__->set_primary_key('topic_id'); __PACKAGE__->has_many(boards => 'Bulletinboard::Schema::Board', 'board_id'); 1;