Merge pull request #55 from sliverc/hstore_extension

Enable HStore extension for localized fields to work
This commit is contained in:
Swen Kooij 2019-01-11 14:44:05 +02:00 committed by GitHub
commit fac1a595aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# Generated by Django 2.1 on 2018-08-27 08:05
from django.contrib.postgres.operations import HStoreExtension
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
]
operations = [
HStoreExtension(),
]

View File