CharField in model should be null=True according Django docs

All tests should still pass

Ref #514
This commit is contained in:
Yuri Prezument 2012-12-17 16:31:18 +02:00
parent 497da7fc69
commit 6f6aeadf5f

View File

@ -160,7 +160,7 @@ class Photo(RESTFrameworkModel):
# Model for issue #324
class BlankFieldModel(RESTFrameworkModel):
title = models.CharField(max_length=100, blank=True, null=True)
title = models.CharField(max_length=100, blank=True, null=False)
# Model for issue #380