diff options
Diffstat (limited to 'tests/postgres_tests/migrations/0001_setup_extensions.py')
| -rw-r--r-- | tests/postgres_tests/migrations/0001_setup_extensions.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/postgres_tests/migrations/0001_setup_extensions.py b/tests/postgres_tests/migrations/0001_setup_extensions.py new file mode 100644 index 0000000000..e69a9a00df --- /dev/null +++ b/tests/postgres_tests/migrations/0001_setup_extensions.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.contrib.postgres.operations import HStoreExtension +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ] + + operations = [ + HStoreExtension(), + ] |
