The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
package
Director;
__PACKAGE__->set_table( 'Directors' );
__PACKAGE__->columns( 'All' => qw/ Name Birthday IsInsane / );
sub create_sql {
return qq{
name VARCHAR(80),
birthday INTEGER,
isinsane INTEGER
} ;
}
1;
|