Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
1 vote
0 answers
139 views

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 ...
iaggoCapitanio2's user avatar
0 votes
0 answers
96 views

I've a django-multitenant SAAS with this tenant model: class Company(TenantModel): name = models.CharField( max_length=100, unique=True ) slug = AutoSlugField( ...
Cristian Rojas's user avatar
3 votes
1 answer
79 views

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(...
gurkanindibay's user avatar