diff --git a/src/info/migrations/0005_add_teams_to_categories.py b/src/info/migrations/0005_add_teams_to_categories.py index e4aa33b0..af6ef8e0 100644 --- a/src/info/migrations/0005_add_teams_to_categories.py +++ b/src/info/migrations/0005_add_teams_to_categories.py @@ -41,7 +41,7 @@ def add_teams_to_categories(apps, schema_editor): # Food team food = team2018.get(name="Food") - infocategories2018.filter(anchor_in=["food-and-groceries"]).update(team=food) + infocategories2018.filter(anchor__in=["food-and-groceries"]).update(team=food) # NOC team noc = team2018.get(name="NOC")