0
0
mirror of https://github.com/django/django.git synced 2024-11-22 11:57:34 +01:00
django/.github/workflows/data/test_postgres.py.tpl
2023-06-15 10:49:37 +02:00

18 lines
383 B
Smarty

from test_sqlite import * # NOQA
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"USER": "user",
"NAME": "django",
"PASSWORD": "postgres",
"HOST": "localhost",
"PORT": 5432,
},
"other": {
"ENGINE": "django.db.backends.postgresql",
"USER": "user",
"NAME": "django2",
},
}