mirror of
https://github.com/django/django.git
synced 2024-12-29 04:26:28 +00:00
a1e9e9abc5
This reverts commit 41019e48bb
.
14 lines
312 B
Python
14 lines
312 B
Python
from unittest import mock
|
|
|
|
from django.db import migrations
|
|
|
|
try:
|
|
from django.contrib.postgres.operations import CryptoExtension
|
|
except ImportError:
|
|
CryptoExtension = mock.Mock()
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
# Required for the SHA database functions.
|
|
operations = [CryptoExtension()]
|