изменил значение в заголовке

This commit is contained in:
Mike0001-droid 2024-05-31 23:35:26 +05:00
parent 099b37e31e
commit cd26868a89
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ from django.db import models
class Rubric(models.Model):
name = models.CharField(max_length=255)
title = models.CharField(max_length=255)
title = models.CharField(max_length=255, null=True, default='Null')
description = models.TextField()
def __str__(self):