trains

Notifications for the new MBTA trains. Probably no longer functional.

git clone https://code.pdelong.com/trains.git

1CREATE TABLE cars (
2	-- The numeric ID of the car as returned by the API
3	car int PRIMARY KEY,
4
5	-- Timestamp of when we last got an update from the API about this car.
6	last_seen timestamp NOT NULL
7);