Created
August 9, 2018 20:00
-
-
Save moacirmoda/1ffdca39b24d7c7b87c9381465b92d34 to your computer and use it in GitHub Desktop.
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 Car(models.Model): | |
RED = 'r' | |
WHITE = 'w' | |
BLUE = 'b' | |
COLOR_CHOICES = ( | |
(RED, 'red'), | |
(WHITE, 'white'), | |
(BLUE, 'blue'), | |
) | |
color = models.CharField(max_length=5, choices=COLOR_CHOICES, default=RED) | |
>>> Car.objects.filter(color=Car.RED) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment