Better Django models(ibm.com)3 points·by mace·17년 전·1 commentsibm.comBetter Django modelshttp://www.ibm.com/developerworks/opensource/library/os-django-models/index.html1 commentsPost comment[–]bcater·17년 전replyInteresting that they use "type" as a field for the Format class:class Format(models.Model): type = models.CharField(choices=...type() is a Python function, so it doesn't make sense to use "type" as a field name. I found out the hard way that this causes bugs.
class Format(models.Model): type = models.CharField(choices=...
type() is a Python function, so it doesn't make sense to use "type" as a field name. I found out the hard way that this causes bugs.