Skip to content

Commit

Permalink
docs(readme): update postgres database engine
Browse files Browse the repository at this point in the history
Refs: HP-2441
  • Loading branch information
charn committed Jul 30, 2024
1 parent f1fb6f6 commit d7f898c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ modify them in the same file by adding these lines:
```
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'custom_database',
'USER': 'custom_user',
'PASSWORD': 'your_password',
Expand Down
2 changes: 1 addition & 1 deletion local_settings.py.docker.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DEBUG = True

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'tunnistamo',
'USER': 'tunnistamo',
'PASSWORD': 'tunnistamo',
Expand Down

0 comments on commit d7f898c

Please sign in to comment.