django-tenant-schemas
django-tenant-schemas copied to clipboard
Tenant support for Django using PostgreSQL schemas.
I am trying to run tests on my own project. I have a very simple test case set up that inherits from TenantTestCase but errors out with ImportError: Failed to...
Is there any knonwn issues on that? We are thinking on passing our infraestructure to AWS and Aurora seems a great option, but I'm not sure if it will work...
There is a small typo in docs/use.rst. Should read `similar` rather than `similiar`.
Added asynchronious migration executor which executes tenant migrations by running celery task for the each tenant migration. Result of the migration execution is logged to log file which location is...
When using the snippets provided on #506, only fixtures from test schema are loaded, fixtures from public aren't. Is there a proper way to load tenant fixtures and public fixtures...
In test.client.TenantClient, the "content_type" argument for the delete function is not passed to super().delete. This prevents the use of a different content-type while testing: ```python def delete(self, path, data='', content_type='application/octet-stream',...
I would like to move our Django Project using this project to use Pytest for testing. Unfortunatley the current TenantTestCase and FastTenantTestCase does not work with Pytest as it doesn't...
I'm trying to work with Jupyter alongside Django schemas. Thanks
In order to support a special requirement I have that the superusers should exist in the shared schema, I had to make a small change to the overridden createsuperuser Command....
Hi, I was looking for a multi-tenants solution for Django. A lot of online resources points to this repo, and it seems amazing. However, it also seems dead : a...