added tips postgres

This commit is contained in:
Jesús 2019-01-29 15:54:41 -05:00
parent cc658384db
commit 17ab12aa15
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -49,6 +49,16 @@
GRANT ALL PRIVILEGES ON DATABASE namebase TO username;
## Tips of Postgres
1. List database
psql -l
2. Delete database
dropdb namebase
## Conecting to Postgres
1. Copy `settings.py.example` to `settings.py` and modify.