Refs #25175 -- Removed db.backends.postgresql_psycopg2 per deprecation timeline.
This commit is contained in:
parent
ec7e179aeb
commit
944469939b
|
@ -1,9 +0,0 @@
|
|||
import warnings
|
||||
|
||||
from django.utils.deprecation import RemovedInDjango30Warning
|
||||
|
||||
warnings.warn(
|
||||
"The django.db.backends.postgresql_psycopg2 module is deprecated in "
|
||||
"favor of django.db.backends.postgresql.",
|
||||
RemovedInDjango30Warning, stacklevel=2
|
||||
)
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.base import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.client import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.creation import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.features import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.introspection import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.operations import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.schema import * # NOQA
|
|
@ -1 +0,0 @@
|
|||
from ..postgresql.utils import * # NOQA
|
|
@ -236,7 +236,7 @@ in Django 3.0.
|
|||
See :ref:`deprecated-features-2.0` for details on these changes, including how
|
||||
to remove usage of these features.
|
||||
|
||||
* ...
|
||||
* The ``django.db.backends.postgresql_psycopg2`` module is removed.
|
||||
|
||||
See :ref:`deprecated-features-2.1` for details on these changes, including how
|
||||
to remove usage of these features.
|
||||
|
|
Loading…
Reference in New Issue