Using under() for the migration didn't make sense

This commit is contained in:
swag 2021-12-05 04:22:55 -05:00
parent 2489940171
commit fab89aa92e

View File

@ -35,11 +35,10 @@ helper message => sub {
state $message = GuestbookNg::Model::Message->new(pg => shift->pg)
};
# Routes
under sub ($c) {
$c->pg->migrations->from_dir('migrations')->migrate(1)
};
# Get the DB ready
app->pg->migrations->from_dir('migrations')->migrate(1);
# Routes
get '/' => sub ($c) {
my $posts = $c->message->get_posts();