Skip to content

Instantly share code, notes, and snippets.

@hgdeoro
Created March 10, 2013 15:57
Show Gist options
  • Save hgdeoro/5129110 to your computer and use it in GitHub Desktop.
Save hgdeoro/5129110 to your computer and use it in GitHub Desktop.
Django Optimistic Locking: Use a Meta option
class Article(models.Model):
headline = models.CharField(max_length=100, default='Default headline')
pub_date = models.DateTimeField()
Meta:
optimistic_locking = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment