added email and setings field for user

master
Kostanjevec 2022-06-15 11:21:31 +02:00
parent 4f299ea07f
commit ba20635544
1 changed files with 2 additions and 4 deletions

View File

@ -24,10 +24,8 @@ class User(Base):
id = Column(Integer, primary_key=True, autoincrement=True)
username = Column(String(64))
password = Column(String(64))
# email = Column(String)
# config
# deck_size = Column(Integer)
email = Column(Text)
settings = Column(Text) #neki json...
class Card(Base):
__tablename__ = 'card'