2014-03-15 01:34:49 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-11-05 00:27:35 +08:00
|
|
|
from django.db import migrations
|
2014-03-15 01:34:49 +08:00
|
|
|
|
2015-04-05 00:10:26 +08:00
|
|
|
try:
|
|
|
|
from django.contrib.postgres.operations import (
|
2015-06-06 00:37:48 +08:00
|
|
|
CreateExtension, HStoreExtension, TrigramExtension, UnaccentExtension,
|
2015-04-05 00:10:26 +08:00
|
|
|
)
|
|
|
|
except ImportError:
|
|
|
|
from django.test import mock
|
2016-04-26 07:30:48 +08:00
|
|
|
CreateExtension = mock.Mock()
|
2015-04-05 00:10:26 +08:00
|
|
|
HStoreExtension = mock.Mock()
|
2015-06-06 00:37:48 +08:00
|
|
|
TrigramExtension = mock.Mock()
|
2015-04-05 00:10:26 +08:00
|
|
|
UnaccentExtension = mock.Mock()
|
|
|
|
|
2014-03-15 01:34:49 +08:00
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
operations = [
|
2016-04-26 07:30:48 +08:00
|
|
|
# Ensure CreateExtension quotes extension names by creating one with a
|
|
|
|
# dash in its name.
|
|
|
|
CreateExtension('uuid-ossp'),
|
2014-03-15 01:34:49 +08:00
|
|
|
HStoreExtension(),
|
2015-06-06 00:37:48 +08:00
|
|
|
TrigramExtension(),
|
2014-09-06 04:53:11 +08:00
|
|
|
UnaccentExtension(),
|
2014-03-15 01:34:49 +08:00
|
|
|
]
|