Open In App

Field Validations and Built-In Fields - Django Models

Last Updated : 15 Nov, 2025
Comments
Improve
Suggest changes
4 Likes
Like
Report

Field validations in Django make sure that only correct and properly formatted data is saved in the database.

  • Django automatically checks data based on the field type, so no extra validation code is needed.
  • Each field has its own rules, such as IntegerField allowing only whole numbers, CharField limiting text length, and DateField requiring a valid date.
  • If data does not match the required format, Django shows an error and stops the save process.

Understanding Django Field Validation

Consider a project named 'geeksforgeeks' having an app named 'geeks'.

In geeks/models.py:  

Python
from django.db import models

class GeeksModel(models.Model):
    geeks_field = models.IntegerField()

    def __str__(self):
        return str(self.geeks_field)

After running makemigrations and migrate, Django creates the corresponding database table with an integer column.

Opening Django Shell

Validation can be tested interactively by opening the Django shell:

python manage.py shell

This allows creating model instances and checking how Django responds to valid and invalid input.

Invalid Case: Passing a String

If a string value like 'GfG is Best' is used for geeks_field, Django’s validation system will raise an error, as only integers are allowed.

ValidationError
ValidationError

This confirms that Django prevents incorrect data from being saved.

Valid Case: Passing a Correct Integer

Values that satisfy the rules of IntegerField will not raise any ValidationError.

Valid-Integer
IntegerField

The Django admin interface can be used to verify that non-numeric input is automatically rejected, as each field enforces its own built-in validation.

Extra Built-in Validations

Django provides fields for almost every type of data, such as IntegerField for numbers and CharField for text. In addition, there are built-in validations that can be applied to these fields to enforce extra rules. Some of the most used validations are listed below:

Field OptionsDescription
NullIf True, Django will store empty values as NULL in the database. Default is False.
BlankIf True, the field is allowed to be blank. Default is False.
db_columnThe name of the database column to use for this field. If this isn’t given, Django will use the field’s name. 
 
DefaultThe default value for the field. This can be a value or a callable object. If callable it will be called every time a new object is created. 
 
primary_keyIf True, this field is the primary key for the model.
editableIf False, the field will not be displayed in the admin or any other ModelForm. They are also skipped during model validation. Default is True. 
 
error_messagesThe error_messages argument lets you override the default messages that the field will raise. Pass in a dictionary with keys matching the error messages you want to override. 
 
help_textExtra “help” text to be displayed with the form widget. It’s useful for documentation even if your field isn’t used on a form. 
 
verbose_nameA human-readable name for the field. If the verbose name isn’t given, Django will automatically create it using the field’s attribute name, converting underscores to spaces. 
 
validatorsA list of validators to run for this field. See the validators documentation for more information. 
 
UniqueIf True, this field must be unique throughout the table. 
 

Explore