mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	fixed more db model definitions
This commit is contained in:
		| @@ -131,8 +131,8 @@ class ShoppingList(SqlAlchemyBase, BaseMixins): | ||||
|         collection_class=ordering_list("position"), | ||||
|     ) | ||||
|  | ||||
|     recipe_references: Mapped[ShoppingListRecipeReference] = orm.relationship( | ||||
|         ShoppingListRecipeReference, cascade="all, delete, delete-orphan" | ||||
|     recipe_references: Mapped[list[ShoppingListRecipeReference]] = orm.relationship( | ||||
|         ShoppingListRecipeReference, cascade="all, delete, delete-orphan", uselist=True | ||||
|     ) | ||||
|     label_settings: Mapped[list["ShoppingListMultiPurposeLabel"]] = orm.relationship( | ||||
|         ShoppingListMultiPurposeLabel, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user