WEBVTT
Kind: captions
Language: en

00:00:00.030 --> 00:00:05.870
In Django we use models to describe the
data we need for our application

00:00:05.870 --> 00:00:12.509
Django then uses these models to set up
and configure our database to store our

00:00:12.509 --> 00:00:15.400
data effectively

00:00:15.400 --> 00:00:20.220
Each model in Django
maps to a specific table within our

00:00:20.220 --> 00:00:22.280
database

00:00:22.280 --> 00:00:26.789
Django handles the relationship
between our models and the database for

00:00:26.789 --> 00:00:31.890
us so we never need to write any sql
statements or interact with the database

00:00:31.890 --> 00:00:33.460
directly

00:00:33.460 --> 00:00:39.739
So let's get started and create
our first models for our project

