2017-01-19 17:16:04 +00:00
|
|
|
from unittest import mock
|
|
|
|
|
2014-11-04 16:27:35 +00:00
|
|
|
from django.db import migrations
|
2014-03-14 17:34:49 +00:00
|
|
|
|
2015-04-04 16:10:26 +00:00
|
|
|
try:
|
|
|
|
from django.contrib.postgres.operations import (
|
2017-07-01 13:30:34 +00:00
|
|
|
BtreeGinExtension, BtreeGistExtension, CITextExtension,
|
|
|
|
CreateExtension, CryptoExtension, HStoreExtension, TrigramExtension,
|
|
|
|
UnaccentExtension,
|
2015-04-04 16:10:26 +00:00
|
|
|
)
|
|
|
|
except ImportError:
|
2016-08-08 03:15:08 +00:00
|
|
|
BtreeGinExtension = mock.Mock()
|
2017-07-01 13:30:34 +00:00
|
|
|
BtreeGistExtension = mock.Mock()
|
2017-04-25 22:49:29 +00:00
|
|
|
CITextExtension = mock.Mock()
|
2016-04-25 23:30:48 +00:00
|
|
|
CreateExtension = mock.Mock()
|
2017-03-29 21:52:42 +00:00
|
|
|
CryptoExtension = mock.Mock()
|
2015-04-04 16:10:26 +00:00
|
|
|
HStoreExtension = mock.Mock()
|
2015-06-05 16:37:48 +00:00
|
|
|
TrigramExtension = mock.Mock()
|
2015-04-04 16:10:26 +00:00
|
|
|
UnaccentExtension = mock.Mock()
|
|
|
|
|
2014-03-14 17:34:49 +00:00
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
operations = [
|
2016-08-08 03:15:08 +00:00
|
|
|
BtreeGinExtension(),
|
2017-07-01 13:30:34 +00:00
|
|
|
BtreeGistExtension(),
|
2017-04-25 22:49:29 +00:00
|
|
|
CITextExtension(),
|
2016-04-25 23:30:48 +00:00
|
|
|
# Ensure CreateExtension quotes extension names by creating one with a
|
|
|
|
# dash in its name.
|
|
|
|
CreateExtension('uuid-ossp'),
|
2017-03-29 21:52:42 +00:00
|
|
|
CryptoExtension(),
|
2014-03-14 17:34:49 +00:00
|
|
|
HStoreExtension(),
|
2015-06-05 16:37:48 +00:00
|
|
|
TrigramExtension(),
|
2014-09-05 20:53:11 +00:00
|
|
|
UnaccentExtension(),
|
2014-03-14 17:34:49 +00:00
|
|
|
]
|