1
0
mirror of https://github.com/django/django.git synced 2025-05-01 12:44:36 +00:00

[1.10.x] Refs #27164 -- Fixed typo in docs/topics/db/multi-db.txt

Backport of 789f9c9b29dc79c3007b2b31cb75cf8d037f266d from master
This commit is contained in:
Tim Graham 2016-09-01 09:51:05 -04:00
parent db3eabfae5
commit 2078b187f7

View File

@ -701,7 +701,7 @@ how you can split these models across databases:
- ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked
together and linked to ``ContentType``, so they must be stored in the same
database as ``ContentType``.
- ``admin`` depends on ``auth``, so their models must be in the same database
- ``admin`` depends on ``auth``, so its models must be in the same database
as ``auth``.
- ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be
in the same database as ``sites``.