Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
|
Thing->table( 'things' );
Thing->columns( Primary => qw(id) );
Thing->columns( Essential => qw(id title description date) );
sub class_title { 'Thing' }
sub class_plural { 'Things' }
sub class_description { 'Things of one kind or another.' }
1;
|