Created
February 7, 2023 01:52
-
-
Save KabakiAntony/d60fcdfdf270986fb971724655f77968 to your computer and use it in GitHub Desktop.
color model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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