diff --git a/food_planner/models.py b/food_planner/models.py index e5d8aa0..cef61fc 100644 --- a/food_planner/models.py +++ b/food_planner/models.py @@ -111,6 +111,7 @@ class UsedIngredients(models.Model): help_text=_('Please specify the used amount of the ingredient')) unit = models.CharField(_('Unit for amount'), max_length=10, choices=MEASUREMENT_UNITS) + class Vendor(models.Model): name = models.CharField(_('Vendor'), max_length=50)