migration: only select required fields

This commit is contained in:
Daniel Friesel 2023-01-18 18:36:11 +01:00
parent 2a3dd77d27
commit 3f08f86ac2
No known key found for this signature in database
GPG key ID: 100D5BFB5166E005

View file

@ -1225,7 +1225,7 @@ my @migrations = (
say 'Adjusting route schema, this may take a while ...'; say 'Adjusting route schema, this may take a while ...';
my $res = $db->select( 'in_transit_str', '*' ); my $res = $db->select( 'in_transit_str', [ 'route', 'user_id' ] );
while ( my $row = $res->expand->hash ) { while ( my $row = $res->expand->hash ) {
my @new_route; my @new_route;
for my $stop ( @{ $row->{route} } ) { for my $stop ( @{ $row->{route} } ) {
@ -1242,9 +1242,8 @@ my @migrations = (
= $db->select( 'journeys', 'count(*) as count' )->hash->{count}; = $db->select( 'journeys', 'count(*) as count' )->hash->{count};
my $count = 0; my $count = 0;
$res = $db->select( 'journeys_str', '*' ); $res = $db->select( 'journeys_str', [ 'route', 'journey_id' ] );
while ( my $row = $res->expand->hash ) { while ( my $row = $res->expand->hash ) {
my $id = $row->{journey_id};
my @new_route; my @new_route;
for my $stop ( @{ $row->{route} } ) { for my $stop ( @{ $row->{route} } ) {