Changeset 5803 for django/trunk/docs/tutorial02.txt
- Timestamp:
- 08/05/07 00:14:46 (1 year ago)
- Files:
-
- django/trunk/docs/tutorial02.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial02.txt
r5303 r5803 241 241 Then change the other fields in ``Choice`` to give them ``core=True``:: 242 242 243 choice = models.CharField(max length=200, core=True)243 choice = models.CharField(max_length=200, core=True) 244 244 votes = models.IntegerField(core=True) 245 245
