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

package Test::Schema;
__PACKAGE__->load_namespaces();
sub deploy_or_connect {
my $self = shift;
my $schema = $self->connect(@_);
$schema->deploy();
return $schema;
}
1;