Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
# -*- coding: utf-8 -*-
from django.db import models, migrations
from django.contrib.postgres.operations import (HStoreExtension, UnaccentExtension, )
class Migration(migrations.Migration):
dependencies = [
]
operations = [
HStoreExtension(),
UnaccentExtension()
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment