From bcb4fe0012f8f869348ea83f5a35706f4545c44a Mon Sep 17 00:00:00 2001 From: Caio Ariede Date: Thu, 6 Aug 2015 20:34:04 -0300 Subject: [PATCH] Refs #25175 -- Added backwards compatibility for importing postgresql_psycopg2 backend. --- django/db/backends/postgresql_psycopg2/__init__.py | 0 django/db/backends/postgresql_psycopg2/base.py | 1 + django/db/backends/postgresql_psycopg2/client.py | 1 + django/db/backends/postgresql_psycopg2/creation.py | 1 + django/db/backends/postgresql_psycopg2/features.py | 1 + django/db/backends/postgresql_psycopg2/introspection.py | 1 + django/db/backends/postgresql_psycopg2/operations.py | 1 + django/db/backends/postgresql_psycopg2/schema.py | 1 + django/db/backends/postgresql_psycopg2/utils.py | 1 + django/db/backends/postgresql_psycopg2/version.py | 1 + 10 files changed, 9 insertions(+) create mode 100644 django/db/backends/postgresql_psycopg2/__init__.py create mode 100644 django/db/backends/postgresql_psycopg2/base.py create mode 100644 django/db/backends/postgresql_psycopg2/client.py create mode 100644 django/db/backends/postgresql_psycopg2/creation.py create mode 100644 django/db/backends/postgresql_psycopg2/features.py create mode 100644 django/db/backends/postgresql_psycopg2/introspection.py create mode 100644 django/db/backends/postgresql_psycopg2/operations.py create mode 100644 django/db/backends/postgresql_psycopg2/schema.py create mode 100644 django/db/backends/postgresql_psycopg2/utils.py create mode 100644 django/db/backends/postgresql_psycopg2/version.py 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 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