Commit 6f6aeadf by Yuri Prezument

CharField in model should be null=True according Django docs

All tests should still pass

Ref #514
parent 497da7fc
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment