diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index 4ae105a..741155e 100644
a
|
b
|
Django quotes column and table names behind the scenes.
|
176 | 176 | >>> answer.get_previous_in_order() |
177 | 177 | <Answer: 1> |
178 | 178 | |
| 179 | .. admonition:: Changing order_with_respect_to |
| 180 | |
| 181 | ``order_with_respect_to`` requires an additional database column, |
| 182 | so be sure to take that into account if you add or change |
| 183 | ``order_with_respect_to`` after your initial ``syncdb``, as you |
| 184 | would any other change to your models. |
| 185 | |
179 | 186 | ``ordering`` |
180 | 187 | ------------ |
181 | 188 | |