I have a class project. I have to make a database with tables that shows the time tables of a train.
The minimum requirements is
There is a Train going South and another going North. There are 10 stops for both trains. No 2 trains are at any stop at the same time. North bound and south bound trains are never at the same stop at the same time.
Each stop is 30 minutes from each other.
Train A is the south bound train Train B is the north bound train
The database is SQLite3.
I just need help with designing the tables.
I tried
>ID (Autonumber) INT
>StopName Text
>ArrivalStopTime Date/Time
>DepartureStopTime Date/Time