The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyApp::Model::Main;
use base qw( Catalyst::Model::DBIC::Schema );

__PACKAGE__->config(
    schema_class => 'MyCRUD::Main',
    connect_info => [ 'dbi:SQLite:' . MyApp->path_to('mycrud.db') ],
);

1;