1
0
mirror of https://github.com/bspeice/itcs4180 synced 2024-11-13 19:08:20 -05:00

Move location to DecimalFields

This commit is contained in:
Bradlee Speice 2014-04-01 19:30:15 -04:00
parent 950a188e30
commit 6769e75c9c

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()