2
0

test_postgres.py.tpl 383 B

1234567891011121314151617
  1. from test_sqlite import * # NOQA
  2. DATABASES = {
  3. "default": {
  4. "ENGINE": "django.db.backends.postgresql",
  5. "USER": "user",
  6. "NAME": "django",
  7. "PASSWORD": "postgres",
  8. "HOST": "localhost",
  9. "PORT": 5432,
  10. },
  11. "other": {
  12. "ENGINE": "django.db.backends.postgresql",
  13. "USER": "user",
  14. "NAME": "django2",
  15. },
  16. }