permissions

This commit is contained in:
2024-08-31 12:23:32 +05:00
parent f079d90d0e
commit 2dcc632c8f
5 changed files with 6 additions and 4 deletions

View File

@@ -128,10 +128,10 @@ import os
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'erkesh_mal',
'USER': 'postgres',
'PASSWORD': 'swydk',
'HOST': 'localhost',
'NAME': 'mydatabase',
'USER': 'myuser',
'PASSWORD': 'mypassword',
'HOST': 'db',
'PORT': '5432',
}
}