We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 916724a commit a36fe70Copy full SHA for a36fe70
1 file changed
api/app_analytics/apps.py
@@ -4,3 +4,8 @@
4
class AppAnalyticsConfig(AppConfig):
5
default_auto_field = "django.db.models.BigAutoField"
6
name = "app_analytics"
7
+
8
+ def ready(self) -> None:
9
+ # Make sure the psycopg type adapters are registered.
10
+ # This is necessary for the HStoreField to work correctly.
11
+ import django.contrib.postgres.signals # noqa: F401
0 commit comments