diff --git a/create_db.py b/create_db.py index 53aff5f..27a6e60 100644 --- a/create_db.py +++ b/create_db.py @@ -36,7 +36,7 @@ class Card(Base): interest_rate = Column(Float) item_location = Column(String(1024)) last_review = Column(Text) - share_id = Column(Integer) #explain: 0 means not shared, otherwise increment from db and generate new cards for all relevant(tbd) users + share_id = Column(Text) #explain: 0 means not shared, otherwise increment from db and generate new cards for all relevant(tbd) users class Deck(Base): __tablename__ = 'deck'