sync - added week menus

This commit is contained in:
2025-09-22 09:56:30 -07:00
parent 45779f1739
commit 3344d88691
6 changed files with 25 additions and 14 deletions

View File

@@ -21,7 +21,7 @@ class TrackedDay(Base):
__tablename__ = "tracked_days"
id = Column(Integer, primary_key=True, index=True)
person = Column(String, index=True) # Person A or Person B
person = Column(String, index=True) # Sarah or Stuart
date = Column(Date, index=True) # Date being tracked
class TrackedMeal(Base):