django-tenant-schemas icon indicating copy to clipboard operation
django-tenant-schemas copied to clipboard

Tenant support for Django using PostgreSQL schemas.

Results 171 django-tenant-schemas issues
Sort by recently updated
recently updated
newest added

====================================================================== ERROR: setUpClass (public_site.tests.TestTenantModel) ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/Josh/Documents/Sites/pyenv/lib/python2.7/site-packages/tenant_schemas/test/cases.py", line 15, in setUpClass cls.tenant.save(verbosity=0) # todo: is there any way to get the verbosity from the test...

bug

Is there a way I can move my existing project to use this app so that it becomes a multi-tenanted site? We already have tons and tons of data which...

question

I just had an idea which might fix a problem I have been hitting. Imagine this scenario. 1. You have some code inside of a tenant, possibly through the middleware,...

enhancement

The section https://django-tenant-schemas.readthedocs.io/en/latest/install.html#the-tenant-model states to run a `makemigrations` command but it will raise an error `AttributeError: 'Settings' object has no attribute 'SHARED_APPS'` because the installation documentation describes how to set...

bug

hello, i created a middleware to get the tenant from the url (eg.example.com/tenant1/). But url reversing for admin app is not working.How to fix the issue with url reversing in...

question

The new check for SHARED_APPS and TENANT_APPS existing in INSTALLED_APPS fails when using the suggested AppConfig style in Django: https://docs.djangoproject.com/en/1.10/ref/applications/#for-application-users From the Django Docs: **Besides this use case, it’s best...

bug

I am working in a team which has been hitting a very particular issue we have worked around, and it's hard to pass blame on any module in particular. The...

bug

Just started working with your module, and it is awesome. I have a need for admins to be able to have a user that can access all tenant data, without...

enhancement

Is it possible to have 2 sets of templates, 1 for the public tenant and one for every other tenant?

question

Hello, mates! I want to use some tenant apps in public tenant, but i dont want these apps to become shared. Is there any simple way to activate tenant app...

question