summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaio Ariede <caio.ariede@gmail.com>2015-08-06 20:34:04 -0300
committerTim Graham <timograham@gmail.com>2015-08-07 09:34:18 -0400
commitbcb4fe0012f8f869348ea83f5a35706f4545c44a (patch)
tree092d16fb1a0219d3550e252acb1a2e264f1fa460
parentec9004728ee136e3b7e2b7cd2610203e16b6ce9b (diff)
Refs #25175 -- Added backwards compatibility for importing postgresql_psycopg2 backend.
-rw-r--r--django/db/backends/postgresql_psycopg2/__init__.py0
-rw-r--r--django/db/backends/postgresql_psycopg2/base.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/client.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/creation.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/features.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/introspection.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/operations.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/schema.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/utils.py1
-rw-r--r--django/db/backends/postgresql_psycopg2/version.py1
10 files changed, 9 insertions, 0 deletions
diff --git a/django/db/backends/postgresql_psycopg2/__init__.py b/django/db/backends/postgresql_psycopg2/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/__init__.py
diff --git a/django/db/backends/postgresql_psycopg2/base.py b/django/db/backends/postgresql_psycopg2/base.py
new file mode 100644
index 0000000000..967768434e
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/base.py
@@ -0,0 +1 @@
+from ..postgresql.base import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/client.py b/django/db/backends/postgresql_psycopg2/client.py
new file mode 100644
index 0000000000..2bf134bcaf
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/client.py
@@ -0,0 +1 @@
+from ..postgresql.client import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/creation.py b/django/db/backends/postgresql_psycopg2/creation.py
new file mode 100644
index 0000000000..aaec84e7a8
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/creation.py
@@ -0,0 +1 @@
+from ..postgresql.creation import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/features.py b/django/db/backends/postgresql_psycopg2/features.py
new file mode 100644
index 0000000000..3582a1754e
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/features.py
@@ -0,0 +1 @@
+from ..postgresql.features import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/introspection.py b/django/db/backends/postgresql_psycopg2/introspection.py
new file mode 100644
index 0000000000..1191bb2f5a
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/introspection.py
@@ -0,0 +1 @@
+from ..postgresql.introspection import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/operations.py b/django/db/backends/postgresql_psycopg2/operations.py
new file mode 100644
index 0000000000..a45f5e5611
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/operations.py
@@ -0,0 +1 @@
+from ..postgresql.operations import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/schema.py b/django/db/backends/postgresql_psycopg2/schema.py
new file mode 100644
index 0000000000..b0263d15b7
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/schema.py
@@ -0,0 +1 @@
+from ..postgresql.schema import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/utils.py b/django/db/backends/postgresql_psycopg2/utils.py
new file mode 100644
index 0000000000..c3e6ffe254
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/utils.py
@@ -0,0 +1 @@
+from ..postgresql.utils import * # NOQA
diff --git a/django/db/backends/postgresql_psycopg2/version.py b/django/db/backends/postgresql_psycopg2/version.py
new file mode 100644
index 0000000000..2b9b22107f
--- /dev/null
+++ b/django/db/backends/postgresql_psycopg2/version.py
@@ -0,0 +1 @@
+from ..postgresql.version import * # NOQA