2014-03-15 01:34:49 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.contrib.postgres.operations import HStoreExtension
|
2014-11-05 00:27:35 +08:00
|
|
|
from django.db import migrations
|
2014-03-15 01:34:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
HStoreExtension(),
|
|
|
|
]
|