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

Tenant support for Django using PostgreSQL schemas.

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

Hello. In the example, after you click create users, they are created in the user table of one scheme, but how to make these users split into different schemes does...

question

When running flush as tenant_command on a particular schema I get the following error: > NotImplementedError: subclasses of BaseDatabaseIntrospection may require a get_sequences() method Apparently this method is not implemented...

Hi, I'm using Django 2.1.2 and I have problems with the 'Specializing templates based on tenants' feature. When I add the `tenant_schemas.template_loaders.FilesystemLoader` loader I receive this error: `'FilesystemLoader' object has...

This PR adds support for multi-tenant templates for django2.2. It may also work for some previous versions, dj2.2 is the one I'm currently using and been able to make it...

I was getting one tenant data in other tenant and faced this problem: ``` with tenant_context(tenant): queryset = Model.objects.all() print(queryset) # returns normal queryset print(queryset) # returns empty queryset ```...

I am not sure if this is the best place to ask this but because this ties closely with the Schemas I am hoping someone might have some insight on...

In the docs, it's said that if we want the user to be routed to different views when someone requests http://example.com/ and http://customer.example.com/, we can specify that URL pattern in...

When we are uploading large files or multiple files in the same request and continue to receive request in the application of other URLs, at the time of the successful...

the articles have been deleted or giving 404 on request.

This bit me this morning... I added an application to `INSTALLED_APPS` but forgot to include it in `TENANT_APPS`; when I started migrating the migration code was not being executed, although...

bug