1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

review fixes

This commit is contained in:
DevilsAutumn 2024-05-13 19:06:12 +05:30
parent 6af2b54192
commit c34c981b75

View File

@ -14,20 +14,10 @@
DATABASES = { DATABASES = {
"default": { "default": {
"ENGINE": "django.db.backends.postgresql", "ENGINE": "django.db.backends.sqlite3",
"NAME": "django",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "127.0.0.1",
"PORT": "5432",
}, },
"other": { "other": {
"ENGINE": "django.db.backends.postgresql", "ENGINE": "django.db.backends.sqlite3",
"NAME": "django",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "127.0.0.1",
"PORT": "5432",
}, },
} }