I'm using celery in a PostgreSQL environment where I only have a single database.
So I use the "schema" idiom to keep non-strongly-related data apart.
That's why I'd like to be able to store the celery task results in a different schema than the default "public" one.
Source code modification would take place in backends/database/models.py, both the Task & TaskSet tables and their related Sequence.
Plus of course adding a configuration hook to specify the schema name.
Thanks!