[locations] Remove redundant field def
This commit is contained in:
@ -21,7 +21,6 @@ GEOLOC_PROXIMITY = Decimal(getattr(settings, "GEOLOC_PROXIMITY", "0.0001"))
|
|||||||
class GeoLocation(ScrobblableMixin):
|
class GeoLocation(ScrobblableMixin):
|
||||||
COMPLETION_PERCENT = getattr(settings, "LOCATION_COMPLETION_PERCENT", 100)
|
COMPLETION_PERCENT = getattr(settings, "LOCATION_COMPLETION_PERCENT", 100)
|
||||||
|
|
||||||
uuid = models.UUIDField(default=uuid4, editable=False, **BNULL)
|
|
||||||
lat = models.FloatField()
|
lat = models.FloatField()
|
||||||
lon = models.FloatField()
|
lon = models.FloatField()
|
||||||
truncated_lat = models.FloatField(**BNULL)
|
truncated_lat = models.FloatField(**BNULL)
|
||||||
|
|||||||
Reference in New Issue
Block a user