summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-03 13:36:19 -0400
committerTim Graham <timograham@gmail.com>2015-09-03 13:37:39 -0400
commit7c0850028f25eebaa9b521b5d02afac084ff2c6f (patch)
tree1a354f3dddb85efceee35d3901c6ceee2fc17cf1
parent5ab65ca5c900557f508f62a260f9ea53d9d93f37 (diff)
Documented a limitation of Options.required_db_features.
-rw-r--r--docs/ref/models/options.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index 918ba0966a..8b77c7101d 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -308,7 +308,8 @@ Django quotes column and table names behind the scenes.
the model is considered during the migration phase. For example, if you set
this list to ``['gis_enabled']``, the model will only be synchronized on
GIS-enabled databases. It's also useful to skip some models when testing
- with several database backends.
+ with several database backends. Avoid relations between models that may or
+ may not be created as the ORM doesn't handle this.
``required_db_vendor``
----------------------