mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 11:31:07 -05:00
16 lines
424 B
Python
16 lines
424 B
Python
# history_tracking/apps.py
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class HistoryTrackingConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "history_tracking"
|
|
|
|
def ready(self):
|
|
"""
|
|
No initialization needed for pghistory tracking.
|
|
History tracking is handled by the @pghistory.track() decorator
|
|
and triggers installed in migrations.
|
|
"""
|
|
pass
|