django-db-multitenant
django-db-multitenant copied to clipboard
A simple multi-tenancy solution for Django apps.
I have a working installation of django-db-multitenant, its perfect for my use case thanks. However, I cannot get the management commands to work, such as: TENANT_DATABASE_NAME=example.com ./manage.py migrate How do...
Thank you for this work ... I'm testing in an app at the moment with good success so far. QUESTION: Is it possible to do multi schema updates at the...
### Challenges SQLite 3 does not support multi schemas/databases. Implementing a SQLite 3 database backend would require a novel approach. Unfortunately, solely executing "USE" through the database cursor would not...
Hi I've been testing a bit in Django 3, and it solves my need. But i had to make some modifications cause it complains when tries to find the database;...
I followed all the steps that you mentioned in your docs but I always get the same error "dbname not set at cursor create time" when I run the project....
`KEY_PREFIX` is currently only set/overidden in the `update_cache_from_env` helper function (but not in middleware.py), which would makes it possible to write to a key (e.g. in a management command) that...
TENANT_NAME=company ./manage.py migrate Erro "Is not recognized as an internal or external command and I am using windows 10
Fix the bug for the "set at cursor create time" error in the MySQL middleware.
Hi, In readme we red that "Isolated approach: Separate database per tenant." is just for MySQL ?, We need this to work with PostgreSQL (Database per Tenant) not schema. is...