设置 HStoreField

首先,我们需要做一些设置才能让 HStoreField 正常工作。

  1. 确保 django.contrib.postgres 在你的`INSTALLED_APPS 中
  2. HStoreExtension 添加到你的迁移中。记得在任何 CreateModelAddField 迁移之前放置 HStoreExtension
from django.contrib.postgres.operations import HStoreExtension
from django.db import migrations

class FooMigration(migrations.Migration):
    # put your other migration stuff here
    operations = [
        HStoreExtension(),
        ...
    ]