[locations] Remove RawGeoLocation model and ScrobbledPage model

This commit is contained in:
2024-02-19 19:22:13 -05:00
parent b981c090c6
commit 7fa21c27ea
6 changed files with 33 additions and 129 deletions

View File

@ -120,12 +120,3 @@ class GeoLocation(ScrobblableMixin):
lon__lte=lon_max,
lon__gte=lon_min,
)
class RawGeoLocation(TimeStampedModel):
user = models.ForeignKey(User, on_delete=models.CASCADE)
lat = models.FloatField()
lon = models.FloatField()
altitude = models.FloatField(**BNULL)
speed = models.FloatField(**BNULL)
timestamp = models.DateTimeField(**BNULL)