3 questions
1 vote
0 answers
139 views
How Read Replica in django Tenants
I am using Django Tenant for its excellent ability to share a PostgreSQL database in a schema-based manner, which has significantly improved performance for my customers' queries. However, I now need ...
0 votes
0 answers
96 views
Django inconsistent responses with graphene-django and django-multitenant custom set_current_tenant middleware
I've a django-multitenant SAAS with this tenant model: class Company(TenantModel): name = models.CharField( max_length=100, unique=True ) slug = AutoSlugField( ...
3 votes
1 answer
79 views
Getting 'No field found in Account with column name ""' when creating migration initial data in a project using django-multitenant library
I'm trying to create a data migration script to insert initial data I have a migration file as below Account = apps.get_model("quickstart", "Account") Account.objects.using(...