From 5006bf6249e8876b2d14503df7e9aa7e3eaa12bf Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Sat, 15 Jul 2023 17:10:24 +0200 Subject: database: change maximum comment length --- lib/Travelynx/Command/database.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/Travelynx/Command/database.pm b/lib/Travelynx/Command/database.pm index 485c920..a0dea45 100644 --- a/lib/Travelynx/Command/database.pm +++ b/lib/Travelynx/Command/database.pm @@ -1132,8 +1132,8 @@ my @migrations = ( ); }, -# v27 -> v28 -# add ds100, name, and lat/lon from stations table to journeys_str / in_transit_str + # v27 -> v28 + # add ds100, name, and lat/lon from stations table to journeys_str / in_transit_str sub { my ($db) = @_; $db->query( @@ -1213,12 +1213,12 @@ my @migrations = ( ); }, -# v29 -> v30 -# change layout of stops in in_transit and journeys "route" lists. -# Old layout: A mixture of [name, {data}, undef/"additional"/"cancelled"], [name, timestamp, timestamp], and [name] -# New layout: [name, eva, {data including isAdditional/isCancelled}] -# Combined with a maintenance task that adds eva IDs to past stops, this will allow for more resilience against station name changes. -# It will also help increase the performance of distance and map calculation + # v29 -> v30 + # change layout of stops in in_transit and journeys "route" lists. + # Old layout: A mixture of [name, {data}, undef/"additional"/"cancelled"], [name, timestamp, timestamp], and [name] + # New layout: [name, eva, {data including isAdditional/isCancelled}] + # Combined with a maintenance task that adds eva IDs to past stops, this will allow for more resilience against station name changes. + # It will also help increase the performance of distance and map calculation sub { my ($db) = @_; my $json = JSON->new; -- cgit v1.2.3