diff --git a/create_db.py b/create_db.py index ce1838f..8fe8747 100644 --- a/create_db.py +++ b/create_db.py @@ -26,6 +26,7 @@ class Card(Base): item_location = Column(String(1024)) last_review = Column(Text) share_id = Column(Text) #explain: 0 means not shared, otherwise increment from db and generate new cards for all relevant(tbd) users + card_type = Column(String(1024)) class Deck(Base): __tablename__ = 'deck'