updated migration

This commit is contained in:
smilerz
2021-04-11 21:22:56 -05:00
parent 7ab8b84044
commit 43c808380d
4 changed files with 6 additions and 7 deletions

View File

@@ -61,7 +61,6 @@ with scopes_disabled():
model = Recipe
fields = ['name', 'keywords', 'foods', 'internal']
class FoodFilter(django_filters.FilterSet):
name = django_filters.CharFilter(lookup_expr='icontains')
@@ -69,7 +68,6 @@ with scopes_disabled():
model = Food
fields = ['name']
class ShoppingListFilter(django_filters.FilterSet):
def __init__(self, data=None, *args, **kwargs):