I have been using django's database caching as shown here: https://docs.djangoproject.com/en/4.1/topics/cache/#database-caching
Recently I have migrated to redis caching, but I still have the cache table in my database from the command python manage.py createcachetable.
How can I safely delete this table?
You can just create a custom empty migration with
./manage.py makemigrations --empty myAppAnd then add raw SQL to drop the table.