Skip to content

Instantly share code, notes, and snippets.

@bencleary
Last active August 23, 2019 09:44
Show Gist options
  • Save bencleary/853b0dfbc7bdc04bcb21f34f410b6ac7 to your computer and use it in GitHub Desktop.
Save bencleary/853b0dfbc7bdc04bcb21f34f410b6ac7 to your computer and use it in GitHub Desktop.
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