我在我的django应用程序中使用了postgres,并且在数据库中手动创建了 hstore扩展。但是,当我运行测试时,它尝试创建一个新数据库,并且在找不到hstore扩展名时失败。

我收到以下错误:

django.db.utils.ProgrammingError: hstore type not found in the database. please install it from your 'contrib/hstore.sql' file

我已根据此post更新了迁移信息,如下所示:
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations
from django.conf import settings
from django.contrib.postgres.operations import HStoreExtension
import django.contrib.postgres.fields
import django.contrib.postgres.fields.hstore


class Migration(migrations.Migration):

    dependencies = [
        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
    ]

    operations = [
        HStoreExtension(),
        migrations.CreateModel(
        name='AppUser',
        fields=[
            ('id', models.AutoField(serialize=False, verbose_name='ID', primary_key=True, auto_created=True)),
            ('created_date', models.DateTimeField(auto_now_add=True)),
            ('modified_date', models.DateTimeField(auto_now=True)),
            ('lock', models.BooleanField(default=False)),
            ('username', models.CharField(max_length=100)),
            ('email', models.EmailField(max_length=150)),
            ('social_data', django.contrib.postgres.fields.hstore.HStoreField(blank=True, default='')),
            ('phone_number', models.CharField(max_length=15)),
            ('photo', models.URLField(blank=True)),
            ('gender', models.TextField(max_length=6)),
            ('badges', django.contrib.postgres.fields.ArrayField(size=None, base_field=models.CharField(max_length=30))),
        ],
        options={
            'abstract': False,
        },
    ),
    ]

最佳答案

documentation中所述:



为此,您必须连接到数据库并创建一个扩展:

CREATE EXTENSION hstore;


$ psql -d template1 -c 'create extension hstore;'

对我来说,它就像一个魅力! :)

检查扩展是否正常:使用通讯用户连接到所需的数据库,然后发出:

`CREATE table test(id serial,value hstore);'

您应该得到:CREATE TABLE响应,如果一切正常。

关于django - Django测试在Postgres Hstore迁移失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36322750/

10-13 02:07