Saurav Kumar

Results 1 issues of Saurav Kumar

For Django projects having multiple DB connections something like this: ``` DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'HOST': '127.0.0.1', 'NAME': 'default_db', 'USER': 'postgres', 'PASSWORD': 'xxxxxxx', 'OPTIONS': {'options': '-c search_path=sys,public'},...