Changeset 691
- Timestamp:
- 09/25/05 16:57:32 (3 years ago)
- Files:
-
- django/trunk/docs/db-api.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/db-api.txt
r690 r691 438 438 >>> p.save() 439 439 440 Calling ``save()`` on an object with a n id if ``None`` signifies to441 Django that the object is new and should be inserted.440 Calling ``save()`` on an object with a primary key whose value is ``None`` 441 signifies to Django that the object is new and should be inserted. 442 442 443 443 Related objects (e.g. ``Choices``) are created using convenience functions::
