我正在关注文档中的代码
from django.contrib.postgres.fields import HStoreField
from django.db import models
class Dog(models.Model):
name = models.CharField(max_length=200)
data = HStoreField()
def __str__(self): # __unicode__ on Python 2
return self.name
运行此代码会导致:
ProgrammingError: can't adapt type 'dict'
我正在使用 Postgres==9.3.6、psycopg2==2.6,并且我检查了 HStore 扩展是否已启用。