[Answered ]-Storing Location History in a Django Model Field

2👍

You definitly want a Location model with a ForeignKey on Tracker.

Note that this will not create a “many to many” relationship but a “one-to-many” one where a tracker has many locations and a location belong to one single tracker.

Leave a comment