Created
August 3, 2015 18:20
-
-
Save nazrulworld/1574f83ee52781a485a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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