diff --git a/docs/topics/serialization.txt b/docs/topics/serialization.txt
a
|
b
|
|
196 | 196 | Natural keys |
197 | 197 | ------------ |
198 | 198 | |
| 199 | .. versionadded:: 1.2 |
| 200 | The ability to use natural keys when serializing/deserializing data was |
| 201 | added in the 1.2 release. |
| 202 | |
199 | 203 | The default serialization strategy for foreign keys and many-to-many |
200 | 204 | relations is to serialize the value of the primary key(s) of the |
201 | 205 | objects in the relation. This strategy works well for most types of |
… |
… |
|
341 | 345 | must exist before you include a natural key reference to that data. |
342 | 346 | |
343 | 347 | To accommodate this limitation, calls to :djadmin:`dumpdata` that use |
344 | | the :djadminopt:`--natural` optionwill serialize any model with a |
| 348 | the :djadminopt:`--natural` option will serialize any model with a |
345 | 349 | ``natural_key()`` method before it serializes normal key objects. |
346 | 350 | |
347 | 351 | However, this may not always be enough. If your natural key refers to |