From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package # hide from PAUSE
ActorAlias;
use strict;
__PACKAGE__->set_table( 'ActorAlias' );
__PACKAGE__->columns( Primary => 'id' );
__PACKAGE__->columns( All => qw/ actor alias / );
__PACKAGE__->has_a( actor => 'Actor' );
__PACKAGE__->has_a( alias => 'Actor' );
sub create_sql {
return qq{
id INTEGER PRIMARY KEY,
actor INTEGER,
alias INTEGER
}
}
1;