fixed decimalfield

This commit is contained in:
Kaibu
2019-11-14 00:12:07 +01:00
parent 3ea37b217d
commit 97ab231231

View File

@@ -73,7 +73,7 @@ class Recipe(models.Model):
class RecipeIngredients(models.Model):
recipe = models.ForeignKey(Recipe, on_delete=models.CASCADE)
unit = models.CharField(max_length=128)
amount = models.DecimalField(default=0)
amount = models.DecimalField(default=0, decimal_places=2, max_digits=16)
ingredient = models.ForeignKey(Ingredients, models.PROTECT)