From a31fbd7a4147a53c6c8498bf9dd50a16faf1be18 Mon Sep 17 00:00:00 2001 From: Julian Vidal Date: Wed, 28 Jan 2015 17:52:49 -0500 Subject: [PATCH] Added feed_start_date and feed_end_date columns to gtfs_feed_info sqlite These two columns are missing from the tables and are specified in the official specs (https://developers.google.com/transit/gtfs/reference#feed_info_fields). Some feeds like Boston's MBTA (http://www.mbta.com/uploadedfiles/MBTA_GTFS.zip) use these fields and were throwing errors. --- src/gtfs_tables.sqlite | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gtfs_tables.sqlite b/src/gtfs_tables.sqlite index 6de96bd..761bb38 100644 --- a/src/gtfs_tables.sqlite +++ b/src/gtfs_tables.sqlite @@ -311,6 +311,8 @@ create table gtfs_feed_info ( feed_publisher_name text, feed_publisher_url text, feed_timezone text, + feed_start_date text, + feed_end_date text, feed_lang text, feed_version text );