Files
authentik/packages/django-postgres-cache
Marc 'risson' Schmitt 700e1cf06c lint
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2026-06-17 19:15:31 +02:00
..
2026-06-17 19:15:31 +02:00
2026-01-15 02:08:17 +01:00

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"),
    ]