Move location to DecimalFields

master
Bradlee Speice 2014-04-01 19:30:15 -04:00
parent 950a188e30
commit 6769e75c9c
1 changed files with 3 additions and 1 deletions

View File

@ -6,5 +6,7 @@ class Location(models.Model):
name = models.CharField(max_length=32)
riddle = models.CharField(max_length=512)
riddle_image_url = models.URLField()
location = models.CharField(max_length=16)
location_long = models.DecimalField()
location_lat = models.DecimalField()
result = models.TextField()