Skip to content

Commit a36fe70

Browse files
committed
Fix ProgrammingError in CI
1 parent 916724a commit a36fe70

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

api/app_analytics/apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@
44
class AppAnalyticsConfig(AppConfig):
55
default_auto_field = "django.db.models.BigAutoField"
66
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

Comments
 (0)