diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 275c696..5dbe269 100644
a
|
b
|
support tablespaces for indexes, this option is ignored.
|
195 | 195 | The default value for the field. This can be a value or a callable object. If |
196 | 196 | callable it will be called every time a new object is created. |
197 | 197 | |
| 198 | The default cannot be a mutable object (model instance, list, set, etc.), as a |
| 199 | reference to the same instance of that object would be used as the default |
| 200 | value for that field in all new model instances. Instead, wrap the desired |
| 201 | default in a callable. For example, if you had a custom ``JSONField`` and |
| 202 | wanted to specify a dictionary as the default, use a ``lambda`` as follows:: |
| 203 | |
| 204 | contact_info = JSONField("ContactInfo", default=lambda:{"email": "to1@example.com"}) |
| 205 | |
198 | 206 | ``editable`` |
199 | 207 | ------------ |
200 | 208 | |