From 236baa0f0ec31422bc8c36b24e41112f7a564532 Mon Sep 17 00:00:00 2001 From: Akshesh Date: Mon, 8 Aug 2016 08:45:08 +0530 Subject: Refs #27030 -- Added BtreeGinExtension operation. --- tests/postgres_tests/migrations/0001_setup_extensions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/postgres_tests') diff --git a/tests/postgres_tests/migrations/0001_setup_extensions.py b/tests/postgres_tests/migrations/0001_setup_extensions.py index 400dd091f4..a32319b911 100644 --- a/tests/postgres_tests/migrations/0001_setup_extensions.py +++ b/tests/postgres_tests/migrations/0001_setup_extensions.py @@ -5,10 +5,12 @@ from django.db import migrations try: from django.contrib.postgres.operations import ( - CreateExtension, HStoreExtension, TrigramExtension, UnaccentExtension, + BtreeGinExtension, CreateExtension, HStoreExtension, TrigramExtension, + UnaccentExtension, ) except ImportError: from django.test import mock + BtreeGinExtension = mock.Mock() CreateExtension = mock.Mock() HStoreExtension = mock.Mock() TrigramExtension = mock.Mock() @@ -18,6 +20,7 @@ except ImportError: class Migration(migrations.Migration): operations = [ + BtreeGinExtension(), # Ensure CreateExtension quotes extension names by creating one with a # dash in its name. CreateExtension('uuid-ossp'), -- cgit v1.3