{ package Promotion::Promotion; our @ISA = qw( Promotion::DBI ); __PACKAGE__>table( 'promotion' ); __PACKAGE__>columns( All => qw( id name ) ); } #### { package Promotion::Promotion; our @ISA = qw( Promotion::DBI ); __PACKAGE__->can( 'table' )->( __PACKAGE__, 'promotion' ); __PACKAGE__->can( 'columns' )->( __PACKAGE__, All => qw( id name ) ); }