Skip to content

Instantly share code, notes, and snippets.

@KabakiAntony
Created October 29, 2022 16:49
Show Gist options
  • Save KabakiAntony/ff36ae0503a49f33b164af2c1403d28b to your computer and use it in GitHub Desktop.
Save KabakiAntony/ff36ae0503a49f33b164af2c1403d28b to your computer and use it in GitHub Desktop.
this should not be a new file but rather an update for models just want to highlight the category model update
class Category(models.Model):
name = models.CharField(max_length=100, unique=True)
description = models.TextField(max_length=255, blank=True)
def __str__(self):
return self.name
class Meta:
verbose_name_plural = "Categories"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment