diff options
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/models/options.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt index 90099d13a3..d54af37e86 100644 --- a/docs/ref/models/options.txt +++ b/docs/ref/models/options.txt @@ -24,12 +24,17 @@ Available ``Meta`` options .. attribute:: Options.app_label - If a model exists outside of the standard :file:`models.py` (for instance, - if the app's models are in submodules of ``myapp.models``), the model must - define which app it is part of:: + If a model exists outside of the standard locations (:file:`models.py` or + a ``models`` package in an app), the model must define which app it is part + of:: app_label = 'myapp' + .. versionadded:: 1.7 + + ``app_label`` is no longer required for models that are defined + in a ``models`` package within an app. + ``db_table`` ------------ |
