Last active
August 23, 2019 09:44
-
-
Save bencleary/853b0dfbc7bdc04bcb21f34f410b6ac7 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 Customer(models.Model): | |
... | |
customer_types = ( | |
(1, "Prospect"), | |
(2, "Lead"), | |
(3, "Customer"), | |
) | |
type = models.IntegerField(choices=customer_types, default=1) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment