Enable HStore extension for localized fields to work

This commit is contained in:
Oliver Sauder 2018-08-27 15:07:41 +02:00
parent 88e2d29596
commit 6c902229ce
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