mirror of
https://github.com/django/django.git
synced 2024-12-23 01:25:58 +00:00
Refs #25175 -- Added backwards compatibility for importing postgresql_psycopg2 backend.
This commit is contained in:
parent
ec9004728e
commit
bcb4fe0012
0
django/db/backends/postgresql_psycopg2/__init__.py
Normal file
0
django/db/backends/postgresql_psycopg2/__init__.py
Normal file
1
django/db/backends/postgresql_psycopg2/base.py
Normal file
1
django/db/backends/postgresql_psycopg2/base.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.base import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/client.py
Normal file
1
django/db/backends/postgresql_psycopg2/client.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.client import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/creation.py
Normal file
1
django/db/backends/postgresql_psycopg2/creation.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.creation import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/features.py
Normal file
1
django/db/backends/postgresql_psycopg2/features.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.features import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/introspection.py
Normal file
1
django/db/backends/postgresql_psycopg2/introspection.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.introspection import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/operations.py
Normal file
1
django/db/backends/postgresql_psycopg2/operations.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.operations import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/schema.py
Normal file
1
django/db/backends/postgresql_psycopg2/schema.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.schema import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/utils.py
Normal file
1
django/db/backends/postgresql_psycopg2/utils.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.utils import * # NOQA
|
1
django/db/backends/postgresql_psycopg2/version.py
Normal file
1
django/db/backends/postgresql_psycopg2/version.py
Normal file
@ -0,0 +1 @@
|
||||
from ..postgresql.version import * # NOQA
|
Loading…
Reference in New Issue
Block a user