Skip to content

Instantly share code, notes, and snippets.

@rana-ahmed
Created July 18, 2017 09:36
Show Gist options
  • Save rana-ahmed/9b86089674458caa874ffac838b17ed9 to your computer and use it in GitHub Desktop.
Save rana-ahmed/9b86089674458caa874ffac838b17ed9 to your computer and use it in GitHub Desktop.
class ProductPrice(models.Model):
product = models.ForeignKey('Product', on_delete=models.CASCADE,)
price = models.DecimalField(max_digits=10, decimal_places=2)
date = models.DateField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment