mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-31 03:01:38 -07:00
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Co-authored-by: Ryan Pesek <rpesek@cloudflare.com> Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
django-postgres-cache
Use in migrations
Migrations that use the cache with this installed need to depend on the migration to create the cache entry table:
dependencies = [
# ...other requirements
("django_postgres_cache", "0001_initial"),
]