Multi-tenant schema with django
I am new to working with multi-tenant schema with django. I have followed the below link https://django-tenant-schemas.readthedocs.io/en/latest/install.html When I creating client object, separate tenant schema is created,it's fine. but followed user is not created in separate tenant schema, it's created only in public schema. my view: def registration(request): form = RegistrationForm() if request.method == 'POST': # Post method company_name = request.POST['company_name'] website = request.POST['website'] username = request.POST['username'] f_name = request.POST['first_name'] l_name = request