summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-12 15:20:40 -0500
committerTim Graham <timograham@gmail.com>2015-01-14 14:16:20 -0500
commit28308078f397d1de36fd0da417ac7da2544ba12d (patch)
tree80207ff582b2350d058c1c7c49072b761391c04f /docs/ref
parent737d24923ac69bb8b89af1bb2f3f4c4c744349e8 (diff)
Fixed #22603 -- Reorganized classes in django.db.backends.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/migration-operations.txt2
-rw-r--r--docs/ref/schema-editor.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt
index 8e13974cfe..76e8cae8b8 100644
--- a/docs/ref/migration-operations.txt
+++ b/docs/ref/migration-operations.txt
@@ -272,7 +272,7 @@ if supplied) should be callable objects that accept two arguments; the first is
an instance of ``django.apps.registry.Apps`` containing historical models that
match the operation's place in the project history, and the second is an
instance of :class:`SchemaEditor
-<django.db.backends.schema.BaseDatabaseSchemaEditor>`.
+<django.db.backends.base.schema.BaseDatabaseSchemaEditor>`.
The optional ``hints`` argument will be passed as ``**hints`` to the
:meth:`allow_migrate` method of database routers to assist them in making a
diff --git a/docs/ref/schema-editor.txt b/docs/ref/schema-editor.txt
index 94456d060e..aa8cd2ef65 100644
--- a/docs/ref/schema-editor.txt
+++ b/docs/ref/schema-editor.txt
@@ -2,7 +2,7 @@
``SchemaEditor``
================
-.. module:: django.db.backends.schema
+.. module:: django.db.backends.base.schema
.. class:: BaseDatabaseSchemaEditor