django/tests/postgres_tests/migrations/0001_setup_extensions.py

16 lines
291 B
Python
Raw Normal View History

# -*- 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(),
]