Create a
Django Projectthat does the following:
- Utilizes a
python virtual environmentto store environmental dependencies (i.e. installations) - Creates a
Django appand connect it to yourDjango Project - Connects to a
PostgreSQLdatabase
In your
Django AppCreate aDjango Modelfor each individual table in the immage above. Keep in mind that Postgres only has a limited number of possible field types but remember django offers things likePositiveIntegerField,EmailField, and many others so please ensure to practice utilizing the field thatBEST FITSyour needs for each columns. Lastly, add some data onto each individual field through either the Django Python or the Django Admin site.
