Thanks a lot for the episode!
Tip: instead of Time.now (in the seed file) you can use Time.current, that automatically takes zone into account if you have any set up in the app :)
https://apidock.com/rails/Time/current/class
In a case where you want to update `VehicleTracker` table such that you find a record with `VehicleTracker.find(params[:id])`, how will you go about it?
The reason am asking is that you have suppressed `:id` from being created on `VehicleTrackers` table, In a case where you have vehicle_id column relation on `VehicleTracker` which is the same `id` for any record created by `Vehicle` on `VehicleTracker table`, how do you have a unique `params[:id]` to filter and update a table?