Skip to content

Commit

Permalink
Rename database engine to use actual engine name
Browse files Browse the repository at this point in the history
postgresql_psycopg2 backend renamed to postgresql in Django 1.9 django/django@ec90047
  • Loading branch information
ulgens authored and bmispelon committed Dec 9, 2024
1 parent 0f0a150 commit 8232a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DjangoPlugin/tracdjangoplugin/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"ENGINE": "django.db.backends.postgresql",
"NAME": "djangoproject",
"USER": "djangoproject",
"HOST": SECRETS.get("db_host", ""),
Expand Down

0 comments on commit 8232a87

Please sign in to comment.