Changeset 4276
- Timestamp:
- 01/03/07 08:29:21 (2 years ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r3910 r4276 95 95 96 96 class Example(models.Model): 97 foo__bar = models.IntegerField() 'foo__bar' has two underscores!97 foo__bar = models.IntegerField() # 'foo__bar' has two underscores! 98 98 99 99 These limitations can be worked around, though, because your field name doesn't
