Parcourir la source

[locations] Remove redundant field def

Colin Powell il y a 1 an
Parent
commit
1c41ca3e18
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. 0 1
      vrobbler/apps/locations/models.py

+ 0 - 1
vrobbler/apps/locations/models.py

@@ -21,7 +21,6 @@ GEOLOC_PROXIMITY = Decimal(getattr(settings, "GEOLOC_PROXIMITY", "0.0001"))
 class GeoLocation(ScrobblableMixin):
     COMPLETION_PERCENT = getattr(settings, "LOCATION_COMPLETION_PERCENT", 100)
 
-    uuid = models.UUIDField(default=uuid4, editable=False, **BNULL)
     lat = models.FloatField()
     lon = models.FloatField()
     truncated_lat = models.FloatField(**BNULL)