Skip to content

Instantly share code, notes, and snippets.

@alecklandgraf
Created March 14, 2016 02:32
Show Gist options
  • Select an option

  • Save alecklandgraf/a11bd7f703cb13a2e8b5 to your computer and use it in GitHub Desktop.

Select an option

Save alecklandgraf/a11bd7f703cb13a2e8b5 to your computer and use it in GitHub Desktop.
bad model
# This creates some bad audit_types
class AuditLog(models.Model):
LOG = 'lo',
NOTE = 'no',
AUDIT_CHOICES = (
(LOG, 'log'),
(NOTE, 'note',
)
audit_type = models.CharField(choices=audit_CHOICES)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment