File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -141,23 +141,23 @@ DATABASES = {
141
141
}
142
142
```
143
143
144
- Change it to the following:
144
+ Change it to the following : arrows_clockwise : :
145
145
146
146
``` python
147
147
# PostgreSQL Database
148
148
DATABASES = {
149
149
' default' : {
150
150
' ENGINE' : ' django.db.backends.postgresql' ,
151
- ' NAME' : ' myDatabaseName' , # Default Database = postgres
152
- ' USER' : ' myDatabaseUser' , # Default User = postgres
151
+ ' NAME' : ' myDatabaseName' , # Enter the database name you created above
152
+ ' USER' : ' myDatabaseUser' , # Default User = postgres
153
153
' PASSWORD' : ' myPassword' ,
154
154
' HOST' : ' 127.0.0.1' ,
155
155
' PORT' : ' 5432' ,
156
156
}
157
157
}
158
158
```
159
159
160
- Thats's all, and you are set with the PostgreSQL.
160
+ Thats's all, and you are set with the PostgreSQL. : thumbsup :
161
161
162
162
---------------------------------------------------------------------------------------------------------
163
163
You can’t perform that action at this time.
0 commit comments