Last updated: Feb 15, 2022

Django Models

Models are the way of defining the source of information about the database schema, it includes all the important information about fields and behavior of data we are storing. Each model describes a single database table. In this tutorial we will learn about using Models, ORM, adding different fields into a schema, using different functions and validations on the schema.
Django ORM and Its Operations
In this blog, we will learn about ORM operations in the database.
Django Basic App Model
In this blog, we will learn how to create a Django app model and how makemigrations and migrate commands work.
Django Model Data Types and Fields List MEDIUM
This blog covers the Django model data types and field list concepts.
Add the SlugField inside Django Model
This blog will learn how to Add the SlugField inside Django Model.
Intermediate models in Django
This blog will learn about the intermediate models in Django with examples.
Rendering Django Model in the Admin Interface
This blog covers the concept of rendering Django Model in the admin interface of the Django web application.
Change Object Display Name using __str__ function
This blog will learn how to Change Object Display Name using __str__ function in Django Models.
Built-in Field Validations in Django models
Django is a high-level python web framework used to create and maintain secure websites. Built-in field validations in Django models are predefined in Django.
Author Ranjul
2 upvotes
Custom Field Validations in Django Model
This blog will learn how to do custom field validations in Django Model.
How to use Django Field Choices?
In this blog, we are discussing Django field choices.
How to override the save method in Django Models
In this article, we will learn about override the save method in Django.