Skip to content

Instantly share code, notes, and snippets.

@KabakiAntony
Created February 7, 2023 01:52
Show Gist options
  • Select an option

  • Save KabakiAntony/d60fcdfdf270986fb971724655f77968 to your computer and use it in GitHub Desktop.

Select an option

Save KabakiAntony/d60fcdfdf270986fb971724655f77968 to your computer and use it in GitHub Desktop.
color model
class Color(models.Model):
name = models.CharField(max_length=20, unique=True)
code = models.CharField(max_length=10, unique=True)
def __str__(self):
return self.name
class Meta:
verbose_name_plural = "Colors"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment