document type, set default to ''

This commit is contained in:
j 2011-05-30 13:23:49 +02:00
parent 7b0773ab6d
commit e316d107a5
2 changed files with 2 additions and 1 deletions

View file

@ -28,7 +28,7 @@ class Place(models.Model):
countryCode = models.CharField(max_length=16, default='') countryCode = models.CharField(max_length=16, default='')
wikipediaId = models.CharField(max_length=1000, blank=True) wikipediaId = models.CharField(max_length=1000, blank=True)
type= models.CharField(max_length=1000, blank=True) type = models.CharField(max_length=1000, default='')
south = models.FloatField(default=0) south = models.FloatField(default=0)
west = models.FloatField(default=0) west = models.FloatField(default=0)

View file

@ -32,6 +32,7 @@ def addPlace(request):
lat: float, lat: float,
lng: float, lng: float,
area: float, area: float,
type: ""
} }
''' '''
data = json.loads(request.POST['data']) data = json.loads(request.POST['data'])