Refs #27996 -- Fixed postgres_tests crash if not running with PostgreSQL.
This commit is contained in:
parent
8703680ebe
commit
88af11c58b
|
@ -19,7 +19,10 @@ except ImportError:
|
||||||
UnaccentExtension = mock.Mock()
|
UnaccentExtension = mock.Mock()
|
||||||
needs_crypto_extension = False
|
needs_crypto_extension = False
|
||||||
else:
|
else:
|
||||||
needs_crypto_extension = not connection.features.is_postgresql_13
|
needs_crypto_extension = (
|
||||||
|
connection.vendor == 'postgresql' and
|
||||||
|
not connection.features.is_postgresql_13
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
Loading…
Reference in New Issue