Skip to content

Commit ef5dc7c

Browse files
Working with PostgreSQL - Fine Tuned
1 parent 06bb54b commit ef5dc7c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,23 +141,23 @@ DATABASES = {
141141
}
142142
```
143143

144-
Change it to the following:
144+
Change it to the following :arrows_clockwise: :
145145

146146
```python
147147
# PostgreSQL Database
148148
DATABASES = {
149149
'default': {
150150
'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
153153
'PASSWORD': 'myPassword',
154154
'HOST': '127.0.0.1',
155155
'PORT': '5432',
156156
}
157157
}
158158
```
159159

160-
Thats's all, and you are set with the PostgreSQL.
160+
Thats's all, and you are set with the PostgreSQL. :thumbsup:
161161

162162
---------------------------------------------------------------------------------------------------------
163163

0 commit comments

Comments
 (0)