File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,15 @@ You can define this `"dashboard"` database alias in `settings.py`. Your `DATABAS
51
51
``` python
52
52
DATABASES = {
53
53
" default" : {
54
- " ENGINE" : " django.db.backends.postgresql_psycopg2 " ,
54
+ " ENGINE" : " django.db.backends.postgresql " ,
55
55
" NAME" : " mydb" ,
56
56
" USER" : " read_write_user" ,
57
57
" PASSWORD" : " read_write_password" ,
58
58
" HOST" : " dbhost.example.com" ,
59
59
" PORT" : " 5432" ,
60
60
},
61
61
" dashboard" : {
62
- " ENGINE" : " django.db.backends.postgresql_psycopg2 " ,
62
+ " ENGINE" : " django.db.backends.postgresql " ,
63
63
" NAME" : " mydb" ,
64
64
" USER" : " read_only_user" ,
65
65
" PASSWORD" : " read_only_password" ,
@@ -82,7 +82,7 @@ Some hosting environments such as Heroku charge extra for the ability to create
82
82
``` python
83
83
# ...
84
84
" dashboard" : {
85
- " ENGINE" : " django.db.backends.postgresql_psycopg2 " ,
85
+ " ENGINE" : " django.db.backends.postgresql " ,
86
86
" USER" : " read_write_user" ,
87
87
# ...
88
88
" OPTIONS" : {
You can’t perform that action at this time.
0 commit comments