Skip to content

Instantly share code, notes, and snippets.

@groovecoder
Created August 3, 2014 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save groovecoder/662bf80d8d335a584802 to your computer and use it in GitHub Desktop.
Save groovecoder/662bf80d8d335a584802 to your computer and use it in GitHub Desktop.
class Bid(models.Model):
user = models.ForeignKey(User)
url = models.URLField()
ask = models.DecimalField(max_digits=6, decimal_places=2)
offer = models.DecimalField(max_digits=6, decimal_places=2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment