diff --git a/SurfSense-Frontend b/SurfSense-Frontend index de5cf7d6c..a39025467 160000 --- a/SurfSense-Frontend +++ b/SurfSense-Frontend @@ -1 +1 @@ -Subproject commit de5cf7d6c908277101e5a1a72dfc0b9265792f23 +Subproject commit a3902546706ac8cff923e8e178a87bc73620e960 diff --git a/backend/models.py b/backend/models.py index e63e55612..d6301f2bf 100644 --- a/backend/models.py +++ b/backend/models.py @@ -11,14 +11,6 @@ class BaseModel(Base): id = Column(Integer, primary_key=True, index=True) -# class Notification(BaseModel): -# __tablename__ = "notifications" - -# text = Column(String) -# user_id = Column(ForeignKey('users.id')) -# user = relationship('User') - - class Chat(BaseModel): __tablename__ = "chats"