From 1d30287d277d70258d0d39649fc2d66adffdb40e Mon Sep 17 00:00:00 2001 From: janko Date: Sat, 8 Apr 2023 23:40:52 +0200 Subject: [PATCH] dodal card_type v shemo --- create_db.py | 1 + 1 file changed, 1 insertion(+) 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'