From 67d32184542c7254e75480e56e20dafee3db69aa Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 9 Apr 2025 13:19:17 +0000 Subject: [PATCH] feat: Update User model with 1 new fields --- models/user.py | 1 + 1 file changed, 1 insertion(+) diff --git a/models/user.py b/models/user.py index faf81eb..470abaf 100644 --- a/models/user.py +++ b/models/user.py @@ -8,4 +8,5 @@ class User(Base): username = Column(String, unique=True, index=True) email = Column(String, unique=True, index=True) hashed_password = Column(String) + routes = Column(String) disabled = Column(Boolean, default=False)