multi-db.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  1. ==================
  2. Multiple databases
  3. ==================
  4. This topic guide describes Django's support for interacting with
  5. multiple databases. Most of the rest of Django's documentation assumes
  6. you are interacting with a single database. If you want to interact
  7. with multiple databases, you'll need to take some additional steps.
  8. Defining your databases
  9. =======================
  10. The first step to using more than one database with Django is to tell
  11. Django about the database servers you'll be using. This is done using
  12. the :setting:`DATABASES` setting. This setting maps database aliases,
  13. which are a way to refer to a specific database throughout Django, to
  14. a dictionary of settings for that specific connection. The settings in
  15. the inner dictionaries are described fully in the :setting:`DATABASES`
  16. documentation.
  17. Databases can have any alias you choose. However, the alias
  18. ``default`` has special significance. Django uses the database with
  19. the alias of ``default`` when no other database has been selected.
  20. The following is an example ``settings.py`` snippet defining two
  21. databases -- a default PostgreSQL database and a MySQL database called
  22. ``users``:
  23. .. code-block:: python
  24. DATABASES = {
  25. 'default': {
  26. 'NAME': 'app_data',
  27. 'ENGINE': 'django.db.backends.postgresql_psycopg2',
  28. 'USER': 'postgres_user',
  29. 'PASSWORD': 's3krit'
  30. },
  31. 'users': {
  32. 'NAME': 'user_data',
  33. 'ENGINE': 'django.db.backends.mysql',
  34. 'USER': 'mysql_user',
  35. 'PASSWORD': 'priv4te'
  36. }
  37. }
  38. If the concept of a ``default`` database doesn't make sense in the context
  39. of your project, you need to be careful to always specify the database
  40. that you want to use. Django requires that a ``default`` database entry
  41. be defined, but the parameters dictionary can be left blank if it will not be
  42. used. The following is an example ``settings.py`` snippet defining two
  43. non-default databases, with the ``default`` entry intentionally left empty::
  44. DATABASES = {
  45. 'default': {},
  46. 'users': {
  47. 'NAME': 'user_data',
  48. 'ENGINE': 'django.db.backends.mysql',
  49. 'USER': 'mysql_user',
  50. 'PASSWORD': 'superS3cret'
  51. },
  52. 'customers': {
  53. 'NAME': 'customer_data',
  54. 'ENGINE': 'django.db.backends.mysql',
  55. 'USER': 'mysql_cust',
  56. 'PASSWORD': 'veryPriv@ate'
  57. }
  58. }
  59. If you attempt to access a database that you haven't defined in your
  60. :setting:`DATABASES` setting, Django will raise a
  61. ``django.db.utils.ConnectionDoesNotExist`` exception.
  62. Synchronizing your databases
  63. ============================
  64. The :djadmin:`syncdb` management command operates on one database at a
  65. time. By default, it operates on the ``default`` database, but by
  66. providing a :djadminopt:`--database` argument, you can tell syncdb to
  67. synchronize a different database. So, to synchronize all models onto
  68. all databases in our example, you would need to call::
  69. $ ./manage.py syncdb
  70. $ ./manage.py syncdb --database=users
  71. If you don't want every application to be synchronized onto a
  72. particular database, you can define a :ref:`database
  73. router<topics-db-multi-db-routing>` that implements a policy
  74. constraining the availability of particular models.
  75. Alternatively, if you want fine-grained control of synchronization,
  76. you can pipe all or part of the output of :djadmin:`sqlall` for a
  77. particular application directly into your database prompt, like this::
  78. $ ./manage.py sqlall sales | ./manage.py dbshell
  79. Using other management commands
  80. -------------------------------
  81. The other ``django-admin.py`` commands that interact with the database
  82. operate in the same way as :djadmin:`syncdb` -- they only ever operate
  83. on one database at a time, using :djadminopt:`--database` to control
  84. the database used.
  85. .. _topics-db-multi-db-routing:
  86. Automatic database routing
  87. ==========================
  88. The easiest way to use multiple databases is to set up a database
  89. routing scheme. The default routing scheme ensures that objects remain
  90. 'sticky' to their original database (i.e., an object retrieved from
  91. the ``foo`` database will be saved on the same database). The default
  92. routing scheme ensures that if a database isn't specified, all queries
  93. fall back to the ``default`` database.
  94. You don't have to do anything to activate the default routing scheme
  95. -- it is provided 'out of the box' on every Django project. However,
  96. if you want to implement more interesting database allocation
  97. behaviors, you can define and install your own database routers.
  98. Database routers
  99. ----------------
  100. A database Router is a class that provides up to four methods:
  101. .. method:: db_for_read(model, **hints)
  102. Suggest the database that should be used for read operations for
  103. objects of type ``model``.
  104. If a database operation is able to provide any additional
  105. information that might assist in selecting a database, it will be
  106. provided in the ``hints`` dictionary. Details on valid hints are
  107. provided :ref:`below <topics-db-multi-db-hints>`.
  108. Returns None if there is no suggestion.
  109. .. method:: db_for_write(model, **hints)
  110. Suggest the database that should be used for writes of objects of
  111. type Model.
  112. If a database operation is able to provide any additional
  113. information that might assist in selecting a database, it will be
  114. provided in the ``hints`` dictionary. Details on valid hints are
  115. provided :ref:`below <topics-db-multi-db-hints>`.
  116. Returns None if there is no suggestion.
  117. .. method:: allow_relation(obj1, obj2, **hints)
  118. Return True if a relation between obj1 and obj2 should be
  119. allowed, False if the relation should be prevented, or None if
  120. the router has no opinion. This is purely a validation operation,
  121. used by foreign key and many to many operations to determine if a
  122. relation should be allowed between two objects.
  123. .. method:: allow_syncdb(db, model)
  124. Determine if the ``model`` should be synchronized onto the
  125. database with alias ``db``. Return True if the model should be
  126. synchronized, False if it should not be synchronized, or None if
  127. the router has no opinion. This method can be used to determine
  128. the availability of a model on a given database.
  129. A router doesn't have to provide *all* these methods -- it may omit one
  130. or more of them. If one of the methods is omitted, Django will skip
  131. that router when performing the relevant check.
  132. .. _topics-db-multi-db-hints:
  133. Hints
  134. ~~~~~
  135. The hints received by the database router can be used to decide which
  136. database should receive a given request.
  137. At present, the only hint that will be provided is ``instance``, an
  138. object instance that is related to the read or write operation that is
  139. underway. This might be the instance that is being saved, or it might
  140. be an instance that is being added in a many-to-many relation. In some
  141. cases, no instance hint will be provided at all. The router checks for
  142. the existence of an instance hint, and determine if that hint should be
  143. used to alter routing behavior.
  144. Using routers
  145. -------------
  146. Database routers are installed using the :setting:`DATABASE_ROUTERS`
  147. setting. This setting defines a list of class names, each specifying a
  148. router that should be used by the master router
  149. (``django.db.router``).
  150. The master router is used by Django's database operations to allocate
  151. database usage. Whenever a query needs to know which database to use,
  152. it calls the master router, providing a model and a hint (if
  153. available). Django then tries each router in turn until a database
  154. suggestion can be found. If no suggestion can be found, it tries the
  155. current ``_state.db`` of the hint instance. If a hint instance wasn't
  156. provided, or the instance doesn't currently have database state, the
  157. master router will allocate the ``default`` database.
  158. An example
  159. ----------
  160. .. admonition:: Example purposes only!
  161. This example is intended as a demonstration of how the router
  162. infrastructure can be used to alter database usage. It
  163. intentionally ignores some complex issues in order to
  164. demonstrate how routers are used.
  165. This example won't work if any of the models in ``myapp`` contain
  166. relationships to models outside of the ``other`` database.
  167. :ref:`Cross-database relationships <no_cross_database_relations>`
  168. introduce referential integrity problems that Django can't
  169. currently handle.
  170. The master/slave configuration described is also flawed -- it
  171. doesn't provide any solution for handling replication lag (i.e.,
  172. query inconsistencies introduced because of the time taken for a
  173. write to propagate to the slaves). It also doesn't consider the
  174. interaction of transactions with the database utilization strategy.
  175. So - what does this mean in practice? Let's consider another sample
  176. configuration. This one will have several databases: one for the
  177. ``auth`` application, and all other apps using a master/slave setup
  178. with two read slaves. Here are the settings specifying these
  179. databases::
  180. DATABASES = {
  181. 'auth_db': {
  182. 'NAME': 'auth_db',
  183. 'ENGINE': 'django.db.backends.mysql',
  184. 'USER': 'mysql_user',
  185. 'PASSWORD': 'swordfish',
  186. },
  187. 'master': {
  188. 'NAME': 'master',
  189. 'ENGINE': 'django.db.backends.mysql',
  190. 'USER': 'mysql_user',
  191. 'PASSWORD': 'spam',
  192. },
  193. 'slave1': {
  194. 'NAME': 'slave1',
  195. 'ENGINE': 'django.db.backends.mysql',
  196. 'USER': 'mysql_user',
  197. 'PASSWORD': 'eggs',
  198. },
  199. 'slave2': {
  200. 'NAME': 'slave2',
  201. 'ENGINE': 'django.db.backends.mysql',
  202. 'USER': 'mysql_user',
  203. 'PASSWORD': 'bacon',
  204. },
  205. }
  206. Now we'll need to handle routing. First we want a router that knows to
  207. send queries for the ``auth`` app to ``auth_db``::
  208. class AuthRouter(object):
  209. """
  210. A router to control all database operations on models in the
  211. auth application.
  212. """
  213. def db_for_read(self, model, **hints):
  214. """
  215. Attempts to read auth models go to auth_db.
  216. """
  217. if model._meta.app_label == 'auth':
  218. return 'auth_db'
  219. return None
  220. def db_for_write(self, model, **hints):
  221. """
  222. Attempts to write auth models go to auth_db.
  223. """
  224. if model._meta.app_label == 'auth':
  225. return 'auth_db'
  226. return None
  227. def allow_relation(self, obj1, obj2, **hints):
  228. """
  229. Allow relations if a model in the auth app is involved.
  230. """
  231. if obj1._meta.app_label == 'auth' or \
  232. obj2._meta.app_label == 'auth':
  233. return True
  234. return None
  235. def allow_syncdb(self, db, model):
  236. """
  237. Make sure the auth app only appears in the 'auth_db'
  238. database.
  239. """
  240. if db == 'auth_db':
  241. return model._meta.app_label == 'auth'
  242. elif model._meta.app_label == 'auth':
  243. return False
  244. return None
  245. And we also want a router that sends all other apps to the
  246. master/slave configuration, and randomly chooses a slave to read
  247. from::
  248. import random
  249. class MasterSlaveRouter(object):
  250. def db_for_read(self, model, **hints):
  251. """
  252. Reads go to a randomly-chosen slave.
  253. """
  254. return random.choice(['slave1', 'slave2'])
  255. def db_for_write(self, model, **hints):
  256. """
  257. Writes always go to master.
  258. """
  259. return 'master'
  260. def allow_relation(self, obj1, obj2, **hints):
  261. """
  262. Relations between objects are allowed if both objects are
  263. in the master/slave pool.
  264. """
  265. db_list = ('master', 'slave1', 'slave2')
  266. if obj1._state.db in db_list and obj2._state.db in db_list:
  267. return True
  268. return None
  269. def allow_syncdb(self, db, model):
  270. """
  271. All non-auth models end up in this pool.
  272. """
  273. return True
  274. Finally, in the settings file, we add the following (substituting
  275. ``path.to.`` with the actual python path to the module(s) where the
  276. routers are defined)::
  277. DATABASE_ROUTERS = ['path.to.AuthRouter', 'path.to.MasterSlaveRouter']
  278. The order in which routers are processed is significant. Routers will
  279. be queried in the order the are listed in the
  280. :setting:`DATABASE_ROUTERS` setting . In this example, the
  281. ``AuthRouter`` is processed before the ``MasterSlaveRouter``, and as a
  282. result, decisions concerning the models in ``auth`` are processed
  283. before any other decision is made. If the :setting:`DATABASE_ROUTERS`
  284. setting listed the two routers in the other order,
  285. ``MasterSlaveRouter.allow_syncdb()`` would be processed first. The
  286. catch-all nature of the MasterSlaveRouter implementation would mean
  287. that all models would be available on all databases.
  288. With this setup installed, lets run some Django code::
  289. >>> # This retrieval will be performed on the 'auth_db' database
  290. >>> fred = User.objects.get(username='fred')
  291. >>> fred.first_name = 'Frederick'
  292. >>> # This save will also be directed to 'auth_db'
  293. >>> fred.save()
  294. >>> # These retrieval will be randomly allocated to a slave database
  295. >>> dna = Person.objects.get(name='Douglas Adams')
  296. >>> # A new object has no database allocation when created
  297. >>> mh = Book(title='Mostly Harmless')
  298. >>> # This assignment will consult the router, and set mh onto
  299. >>> # the same database as the author object
  300. >>> mh.author = dna
  301. >>> # This save will force the 'mh' instance onto the master database...
  302. >>> mh.save()
  303. >>> # ... but if we re-retrieve the object, it will come back on a slave
  304. >>> mh = Book.objects.get(title='Mostly Harmless')
  305. Manually selecting a database
  306. =============================
  307. Django also provides an API that allows you to maintain complete control
  308. over database usage in your code. A manually specified database allocation
  309. will take priority over a database allocated by a router.
  310. Manually selecting a database for a ``QuerySet``
  311. ------------------------------------------------
  312. You can select the database for a ``QuerySet`` at any point in the
  313. ``QuerySet`` "chain." Just call ``using()`` on the ``QuerySet`` to get
  314. another ``QuerySet`` that uses the specified database.
  315. ``using()`` takes a single argument: the alias of the database on
  316. which you want to run the query. For example::
  317. >>> # This will run on the 'default' database.
  318. >>> Author.objects.all()
  319. >>> # So will this.
  320. >>> Author.objects.using('default').all()
  321. >>> # This will run on the 'other' database.
  322. >>> Author.objects.using('other').all()
  323. Selecting a database for ``save()``
  324. -----------------------------------
  325. Use the ``using`` keyword to ``Model.save()`` to specify to which
  326. database the data should be saved.
  327. For example, to save an object to the ``legacy_users`` database, you'd
  328. use this::
  329. >>> my_object.save(using='legacy_users')
  330. If you don't specify ``using``, the ``save()`` method will save into
  331. the default database allocated by the routers.
  332. Moving an object from one database to another
  333. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  334. If you've saved an instance to one database, it might be tempting to
  335. use ``save(using=...)`` as a way to migrate the instance to a new
  336. database. However, if you don't take appropriate steps, this could
  337. have some unexpected consequences.
  338. Consider the following example::
  339. >>> p = Person(name='Fred')
  340. >>> p.save(using='first') # (statement 1)
  341. >>> p.save(using='second') # (statement 2)
  342. In statement 1, a new ``Person`` object is saved to the ``first``
  343. database. At this time, ``p`` doesn't have a primary key, so Django
  344. issues a SQL ``INSERT`` statement. This creates a primary key, and
  345. Django assigns that primary key to ``p``.
  346. When the save occurs in statement 2, ``p`` already has a primary key
  347. value, and Django will attempt to use that primary key on the new
  348. database. If the primary key value isn't in use in the ``second``
  349. database, then you won't have any problems -- the object will be
  350. copied to the new database.
  351. However, if the primary key of ``p`` is already in use on the
  352. ``second`` database, the existing object in the ``second`` database
  353. will be overridden when ``p`` is saved.
  354. You can avoid this in two ways. First, you can clear the primary key
  355. of the instance. If an object has no primary key, Django will treat it
  356. as a new object, avoiding any loss of data on the ``second``
  357. database::
  358. >>> p = Person(name='Fred')
  359. >>> p.save(using='first')
  360. >>> p.pk = None # Clear the primary key.
  361. >>> p.save(using='second') # Write a completely new object.
  362. The second option is to use the ``force_insert`` option to ``save()``
  363. to ensure that Django does a SQL ``INSERT``::
  364. >>> p = Person(name='Fred')
  365. >>> p.save(using='first')
  366. >>> p.save(using='second', force_insert=True)
  367. This will ensure that the person named ``Fred`` will have the same
  368. primary key on both databases. If that primary key is already in use
  369. when you try to save onto the ``second`` database, an error will be
  370. raised.
  371. Selecting a database to delete from
  372. -----------------------------------
  373. By default, a call to delete an existing object will be executed on
  374. the same database that was used to retrieve the object in the first
  375. place::
  376. >>> u = User.objects.using('legacy_users').get(username='fred')
  377. >>> u.delete() # will delete from the `legacy_users` database
  378. To specify the database from which a model will be deleted, pass a
  379. ``using`` keyword argument to the ``Model.delete()`` method. This
  380. argument works just like the ``using`` keyword argument to ``save()``.
  381. For example, if you're migrating a user from the ``legacy_users``
  382. database to the ``new_users`` database, you might use these commands::
  383. >>> user_obj.save(using='new_users')
  384. >>> user_obj.delete(using='legacy_users')
  385. Using managers with multiple databases
  386. --------------------------------------
  387. Use the ``db_manager()`` method on managers to give managers access to
  388. a non-default database.
  389. For example, say you have a custom manager method that touches the
  390. database -- ``User.objects.create_user()``. Because ``create_user()``
  391. is a manager method, not a ``QuerySet`` method, you can't do
  392. ``User.objects.using('new_users').create_user()``. (The
  393. ``create_user()`` method is only available on ``User.objects``, the
  394. manager, not on ``QuerySet`` objects derived from the manager.) The
  395. solution is to use ``db_manager()``, like this::
  396. User.objects.db_manager('new_users').create_user(...)
  397. ``db_manager()`` returns a copy of the manager bound to the database you specify.
  398. Using ``get_queryset()`` with multiple databases
  399. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  400. If you're overriding ``get_queryset()`` on your manager, be sure to
  401. either call the method on the parent (using ``super()``) or do the
  402. appropriate handling of the ``_db`` attribute on the manager (a string
  403. containing the name of the database to use).
  404. For example, if you want to return a custom ``QuerySet`` class from
  405. the ``get_queryset`` method, you could do this::
  406. class MyManager(models.Manager):
  407. def get_queryset(self):
  408. qs = CustomQuerySet(self.model)
  409. if self._db is not None:
  410. qs = qs.using(self._db)
  411. return qs
  412. Exposing multiple databases in Django's admin interface
  413. =======================================================
  414. Django's admin doesn't have any explicit support for multiple
  415. databases. If you want to provide an admin interface for a model on a
  416. database other than that specified by your router chain, you'll
  417. need to write custom :class:`~django.contrib.admin.ModelAdmin` classes
  418. that will direct the admin to use a specific database for content.
  419. ``ModelAdmin`` objects have five methods that require customization for
  420. multiple-database support::
  421. class MultiDBModelAdmin(admin.ModelAdmin):
  422. # A handy constant for the name of the alternate database.
  423. using = 'other'
  424. def save_model(self, request, obj, form, change):
  425. # Tell Django to save objects to the 'other' database.
  426. obj.save(using=self.using)
  427. def delete_model(self, request, obj):
  428. # Tell Django to delete objects from the 'other' database
  429. obj.delete(using=self.using)
  430. def get_queryset(self, request):
  431. # Tell Django to look for objects on the 'other' database.
  432. return super(MultiDBModelAdmin, self).get_queryset(request).using(self.using)
  433. def formfield_for_foreignkey(self, db_field, request=None, **kwargs):
  434. # Tell Django to populate ForeignKey widgets using a query
  435. # on the 'other' database.
  436. return super(MultiDBModelAdmin, self).formfield_for_foreignkey(db_field, request=request, using=self.using, **kwargs)
  437. def formfield_for_manytomany(self, db_field, request=None, **kwargs):
  438. # Tell Django to populate ManyToMany widgets using a query
  439. # on the 'other' database.
  440. return super(MultiDBModelAdmin, self).formfield_for_manytomany(db_field, request=request, using=self.using, **kwargs)
  441. The implementation provided here implements a multi-database strategy
  442. where all objects of a given type are stored on a specific database
  443. (e.g., all ``User`` objects are in the ``other`` database). If your
  444. usage of multiple databases is more complex, your ``ModelAdmin`` will
  445. need to reflect that strategy.
  446. Inlines can be handled in a similar fashion. They require three customized methods::
  447. class MultiDBTabularInline(admin.TabularInline):
  448. using = 'other'
  449. def get_queryset(self, request):
  450. # Tell Django to look for inline objects on the 'other' database.
  451. return super(MultiDBTabularInline, self).get_queryset(request).using(self.using)
  452. def formfield_for_foreignkey(self, db_field, request=None, **kwargs):
  453. # Tell Django to populate ForeignKey widgets using a query
  454. # on the 'other' database.
  455. return super(MultiDBTabularInline, self).formfield_for_foreignkey(db_field, request=request, using=self.using, **kwargs)
  456. def formfield_for_manytomany(self, db_field, request=None, **kwargs):
  457. # Tell Django to populate ManyToMany widgets using a query
  458. # on the 'other' database.
  459. return super(MultiDBTabularInline, self).formfield_for_manytomany(db_field, request=request, using=self.using, **kwargs)
  460. Once you've written your model admin definitions, they can be
  461. registered with any ``Admin`` instance::
  462. from django.contrib import admin
  463. # Specialize the multi-db admin objects for use with specific models.
  464. class BookInline(MultiDBTabularInline):
  465. model = Book
  466. class PublisherAdmin(MultiDBModelAdmin):
  467. inlines = [BookInline]
  468. admin.site.register(Author, MultiDBModelAdmin)
  469. admin.site.register(Publisher, PublisherAdmin)
  470. othersite = admin.AdminSite('othersite')
  471. othersite.register(Publisher, MultiDBModelAdmin)
  472. This example sets up two admin sites. On the first site, the
  473. ``Author`` and ``Publisher`` objects are exposed; ``Publisher``
  474. objects have an tabular inline showing books published by that
  475. publisher. The second site exposes just publishers, without the
  476. inlines.
  477. Using raw cursors with multiple databases
  478. =========================================
  479. If you are using more than one database you can use
  480. ``django.db.connections`` to obtain the connection (and cursor) for a
  481. specific database. ``django.db.connections`` is a dictionary-like
  482. object that allows you to retrieve a specific connection using its
  483. alias::
  484. from django.db import connections
  485. cursor = connections['my_db_alias'].cursor()
  486. Limitations of multiple databases
  487. =================================
  488. .. _no_cross_database_relations:
  489. Cross-database relations
  490. ------------------------
  491. Django doesn't currently provide any support for foreign key or
  492. many-to-many relationships spanning multiple databases. If you
  493. have used a router to partition models to different databases,
  494. any foreign key and many-to-many relationships defined by those
  495. models must be internal to a single database.
  496. This is because of referential integrity. In order to maintain a
  497. relationship between two objects, Django needs to know that the
  498. primary key of the related object is valid. If the primary key is
  499. stored on a separate database, it's not possible to easily evaluate
  500. the validity of a primary key.
  501. If you're using Postgres, Oracle, or MySQL with InnoDB, this is
  502. enforced at the database integrity level -- database level key
  503. constraints prevent the creation of relations that can't be validated.
  504. However, if you're using SQLite or MySQL with MyISAM tables, there is
  505. no enforced referential integrity; as a result, you may be able to
  506. 'fake' cross database foreign keys. However, this configuration is not
  507. officially supported by Django.
  508. .. _contrib_app_multiple_databases:
  509. Behavior of contrib apps
  510. ------------------------
  511. Several contrib apps include models, and some apps depend on others. Since
  512. cross-database relationships are impossible, this creates some restrictions on
  513. how you can split these models across databases:
  514. - each one of ``contenttypes.ContentType``, ``sessions.Session`` and
  515. ``sites.Site`` can be stored in any database, given a suitable router.
  516. - ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked
  517. together and linked to ``ContentType``, so they must be stored in the same
  518. database as ``ContentType``.
  519. - ``admin`` and ``comments`` depend on ``auth``, so their models must be in
  520. the same database as ``auth``.
  521. - ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be
  522. in the same database as ``sites``.
  523. In addition, some objects are automatically created just after
  524. :djadmin:`syncdb` creates a table to hold them in a database:
  525. - a default ``Site``,
  526. - a ``ContentType`` for each model (including those not stored in that
  527. database),
  528. - three ``Permission`` for each model (including those not stored in that
  529. database).
  530. .. versionchanged:: 1.5
  531. Previously, ``ContentType`` and ``Permission`` instances were created only
  532. in the default database.
  533. For common setups with multiple databases, it isn't useful to have these
  534. objects in more than one database. Common setups include master / slave and
  535. connecting to external databases. Therefore, it's recommended:
  536. - either to run :djadmin:`syncdb` only for the default database;
  537. - or to write :ref:`database router<topics-db-multi-db-routing>` that allows
  538. synchronizing these three models only to one database.
  539. .. warning::
  540. If you're synchronizing content types to more that one database, be aware
  541. that their primary keys may not match across databases. This may result in
  542. data corruption or data loss.