Django Tutorial · Django Tutorial

Django Models

Learn all about Django Models in this comprehensive tutorial.

5 min read intermediate
  • A Django model is a table in your database.
  • Up until now in this tutorial, output has been static data from Python or HTML templates.
  • To create a model, navigate to the models.
  • Now when we have described a Model in the models.
  • As a side-note: you can view the SQL statement that were executed from the migration above.

Introduction

A Django model is a table in your database.

Django Models

Up until now in this tutorial, output has been static data from Python or HTML templates.

Now we will see how Django allows us to work with data, without having to change or upload files in the process.

In Django, data is created in objects, called Models, and is actually tables in a database.

Create Table (Model)

To create a model, navigate to the models.py file in the /members/ folder.

Open it, and add a Member table by creating a Member class, and describe the table fields in it:

The first field, firstname, is a Text field, and will contain the first name of the members.

The second field, lastname, is also a Text field, with the member's last name.

Both firstname and lastname is set up to have a maximum of 255 characters.

Note: SQLite Database When we created the Django project, we got an empty SQLite database. It was created in the my_tennis_club root folder, and has the filename db.sqlite3. By default, all Models created in the Django project will be created as tables in this database.

Migrate

Now when we have described a Model in the models.py file, we must run a command to actually create the table in the database.

Navigate to the /my_tennis_club/ folder and run this command:

python

Which will result in this output:

python

Django creates a file describing the changes and stores the file in the /migrations/ folder:

Note that Django inserts an id field for your tables, which is an auto increment number (first record gets the value 1, the second record 2 etc.), this is the default behavior of Django, you can override it by describing your own id field.

The table is not created yet, you will have to run one more command, then Django will create and execute an SQL statement, based on the content of the new file in the /migrations/ folder.

Run the migrate command:

python

Which will result in this output:

python

Now you have a Member table in you database!

View SQL

As a side-note: you can view the SQL statement that were executed from the migration above. All you have to do is to run this command, with the migration number:

python

Which will result in this output:

python

Module quiz

2 questions
1

Which of the following is true about Django Models?

2

What is the most common pitfall when working with Django Models?

Answer all questions to submit.