Skip to content

Commit

Permalink
Update gtfs-sql.sql
Browse files Browse the repository at this point in the history
added `bikes_allowed` column per https://developers.google.com/transit/gtfs/reference?csw=1#trips_fields
and minor spelling fix
  • Loading branch information
PixnBits committed Mar 3, 2014
1 parent e9e068c commit ccdaf59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gtfs-sql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,10 @@ CREATE TABLE `trips` (
block_id VARCHAR(11),
shape_id VARCHAR(11),
wheelchair_accessible TINYINT(1), #0 for no information, 1 for at
# least one rider accomodated on wheel chair, 2 for no riders
# least one rider accommodated on wheel chair, 2 for no riders
# accommodated.
bikes_allowed TINYINT(1), #0 for no information, 1 for at least
# one bicycle accommodated, 2 for no bicycles accommodated
KEY `route_id` (route_id),
KEY `service_id` (service_id),
KEY `direction_id` (direction_id),
Expand Down

0 comments on commit ccdaf59

Please sign in to comment.