Reading-Notes
Code Fellows Python 401
Read: 27 - Django Models
Using Models
- Models define the structure and type of stored data
- various database types to fit a given model
- a object is a group of related info
- define relationships within Django in three ways
- one to one
- one to many
- many to many
Django Admin
The Django admin application can use your models to automatically build a site area that you can use to create, view, update, and delete records.