package MGBDB::Entry; use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/PK::Auto Core/); __PACKAGE__->table('mgb'); __PACKAGE__->add_columns(qw/id ip timestamp parent approved message ... /); __PACKAGE__->set_primary_key(qw/id/); __PACKAGE__->has_many(siblings => 'MGBDB::Entry', 'parent'); 1;